import { AppSettings, PassflowPasskeySettings, PassflowPasswordPolicySettings } from '@passflow/passflow-js-sdk';
export type UseAppSettingsProps = () => {
    appSettings: AppSettings | null;
    passwordPolicy: PassflowPasswordPolicySettings | null;
    passkeyProvider: PassflowPasskeySettings | null;
    isLoading: boolean;
    isError: boolean;
    error: string;
    reset: () => void;
};
export declare const useAppSettings: UseAppSettingsProps;
//# sourceMappingURL=use-app-settings.d.ts.map