export type UseEmailInputStateProps = { defaultValue?: string; domains?: string[]; onChange?: (value: string) => void; onSubmit?: (value: string) => void; }; export type EmailInputState = { previousValue: () => string; value: () => string; cursorOffset: () => number; suggestion: () => string | undefined; moveCursorLeft: () => void; moveCursorRight: () => void; insert: (text: string) => void; delete: () => void; submit: () => void; }; export declare const useEmailInputState: ({ defaultValue, domains, onChange, onSubmit, }?: UseEmailInputStateProps) => EmailInputState; //# sourceMappingURL=use-email-input-state.svelte.d.ts.map