import { AxiosError } from 'axios'; import { AppThunk } from 'store'; import { KycDocumentType } from '../../entities/organization.kyc.entity'; export declare const addKycThunk: (type: KycDocumentType, media: File, organizationId: string, onError: (err?: AxiosError) => void) => AppThunk>; export declare const getKycThunk: (organizationId: string) => AppThunk>;