import { ApiErrorResponse } from '@userfrosting/sprinkle-core/interfaces';
/**
 * API Composable
 */
export declare function useUserPasswordResetApi(): {
    apiLoading: import('vue').Ref<boolean, boolean>;
    apiError: import('vue').Ref<{
        title: string;
        description: string;
        status: number;
    } | null, ApiErrorResponse | {
        title: string;
        description: string;
        status: number;
    } | null>;
    passwordReset: (user_name: string) => Promise<void>;
};
