import { MouseEvent as ReactMouseEvent, ReactNode } from 'react'; export interface NewItemButtonProps { /** * Callback for "New Item" button click. When not passed "New Item" will not be rendered. * @external */ onAddNewClick?: (e: ReactMouseEvent) => void; /** * Text for "New Item" button * @external */ addNewText?: ReactNode; } export declare function NewItemButton(props: NewItemButtonProps): JSX.Element; //# sourceMappingURL=NewItemButton.d.ts.map