///
import { CustomStep, CustomStepProps } from '../FormSteps/CustomStep';
import { EurekaDraft } from '../@Types/Draft/Draft';
export interface CustomContextData {
sendLabel?: string;
customStepProps: Record;
customSteps: Record;
customClientInfoStep?: (props: CustomStepProps) => JSX.Element;
/** Function to call on postview to fetch the download url of a file */
fetchDownloadUrl?: (S3Key: string, fileName: string) => Promise;
/** Function to call to map entities internally (postview, activities) */
mapDraftEntities?: (property: string, dependencies: Record) => Promise;
}
declare const CustomContext: import("react").Context;
export default CustomContext;