export interface SetupModel { isSubmitting: boolean; onSubmit: () => Promise; } export declare const useSetupState: () => SetupModel;