interface ToggleEvent { onAdd: (row: any) => void; onRemove: (row: any) => void; } interface DatabaseTableProps extends ToggleEvent { data: any; onSave: (row: any) => void; totalCount: number; } declare function DatabaseTable({ data, onAdd, onRemove, onSave, totalCount, }: DatabaseTableProps): import("react/jsx-runtime").JSX.Element; declare const _default: import("react").MemoExoticComponent; export default _default; //# sourceMappingURL=DatabaseTable.d.ts.map