export type UsePasswordInputStateProps = { onChange?: (value: string) => void; onSubmit?: (value: string) => void; }; export type PasswordInputState = { previousValue: () => string; value: () => string; cursorOffset: () => number; moveCursorLeft: () => void; moveCursorRight: () => void; insert: (text: string) => void; delete: () => void; submit: () => void; }; export declare const usePasswordInputState: ({ onChange, onSubmit, }?: UsePasswordInputStateProps) => PasswordInputState; //# sourceMappingURL=use-password-input-state.svelte.d.ts.map