import React from 'react'; import { ButtonProps, PageHeaderProps } from 'antd'; export interface CreateProps { title?: string; actionButtons?: React.ReactNode; saveButtonProps?: ButtonProps; pageHeaderProps?: PageHeaderProps; resource?: string; isLoading?: boolean; } export declare const Create: React.FC;