import { FunctionComponent } from "react";
import { ButtonProps } from "@fluentui/react-button";
import { FluentIcon } from "@fluentui/react-icons";
import { GenericCudList } from "@knowmax/genericlist-core";
type IProps<T = unknown, ET = unknown> = {
    list: GenericCudList<T, ET>;
    customIcon?: FluentIcon;
    children?: React.ReactNode;
} & ButtonProps;
/** Renders button to start process to create new item. */
export declare const CreateItem: FunctionComponent<IProps<any, any>>;
export {};
