import { RootState } from '../index';
import { CommonError } from '../types';
import { GenerateFormSuccessResponse } from './types';
export declare const selectGenerateFormData: (state: RootState) => GenerateFormSuccessResponse | undefined;
export declare const selectGenerateFormLoading: (state: RootState) => boolean;
export declare const selectGenerateFormSuccess: (state: RootState) => boolean;
export declare const selectGenerateFormError: (state: RootState) => CommonError | undefined;
