export interface CreateIncubatorDialogProps {
    /**
     * Overrides or extends the styles applied to the component.
     * @default null
     */
    className?: string;
    /**
     * Opens dialog
     * @default false
     */
    open: boolean;
    /**
     * On dialog close callback function
     * @default null
     */
    onClose?: () => void;
}
export default function CreateIncubatorDialog(props: CreateIncubatorDialogProps): JSX.Element;
