/// import { CreateFormProps } from '../../forms/crud/CreateForm'; import FormActionProps from '@genstackio/react-admin-ui/lib/molecules/forms/FormActionProps'; import { WithMutationName } from '@genstackio/react-admin-ui/lib/withs'; export declare function CreateAction({ name, singular, new: newInfos, onSuccess, prepare, ...props }: CreateActionProps): JSX.Element; export interface CreateActionProps extends CreateFormProps, FormActionProps, WithMutationName { name: string; singular: string; new?: { content?: any; form?: boolean; attributes?: string[]; prepare?: Function; }; } export default CreateAction; //# sourceMappingURL=CreateAction.d.ts.map