import { AxiosError } from 'axios'; import { IPerson } from 'person'; import { AppThunk } from 'store'; export declare const addFounderRequest: (organizationId: string, founder: Partial, onError: (err?: AxiosError) => void) => AppThunk; export declare const updateFounderRequest: (organizationId: string, founderId: string, founder: Partial, onError: (err?: AxiosError) => void) => AppThunk; export declare const deleteFounderRequest: (organizationId: string, founderId: string, onError: (err?: AxiosError | { message: string; statusCode: string; }) => void) => AppThunk;