import React from 'react';
import './add-entity.scss';
declare type Props = {
    /**
     * Give it a dark color scheme?
     */
    isDark?: boolean;
    handleAdd: (values: MyFormValues) => void;
};
interface MyFormValues {
    title: string;
    entityType?: string;
}
export declare const AddEntity: React.FC<Props>;
export {};
//# sourceMappingURL=add-entity.d.ts.map