diff --git a/packages/shared/components/email-input/index.tsx b/packages/shared/components/email-input/index.tsx index f88d9d0f4f..e5649910a2 100644 --- a/packages/shared/components/email-input/index.tsx +++ b/packages/shared/components/email-input/index.tsx @@ -24,6 +24,6 @@ // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode -export { TValidate } from "./EmailInput.types"; +export type { TValidate } from "./EmailInput.types"; export { EmailInput } from "./EmailInput"; diff --git a/packages/shared/components/password-input/index.tsx b/packages/shared/components/password-input/index.tsx index 7ee5a54c04..89d6aa50e1 100644 --- a/packages/shared/components/password-input/index.tsx +++ b/packages/shared/components/password-input/index.tsx @@ -24,6 +24,6 @@ // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode -export { PasswordInputHandle } from "./PasswordInput.types"; +export type { PasswordInputHandle } from "./PasswordInput.types"; export { PasswordInput } from "./PasswordInput";