import * as React from "react"; import { DropDownAddType } from "../../types"; export interface DropDownFooterProps { addItemType?: DropDownAddType; onAdd?: () => void; inputValue?: string; onKeyDown?: (event: React.KeyboardEvent) => void; onInputChange?: (event: React.ChangeEvent) => void; addTitle?: string; } declare const DropDownFooter: ({ addItemType, onAdd, inputValue, onKeyDown, onInputChange, addTitle, }: DropDownFooterProps) => JSX.Element; export { DropDownFooter }; //# sourceMappingURL=index.d.ts.map