import { TableNotification } from "./types"; export interface DataTableNotificationsProps { messages: TableNotification[]; updateSelection?(selection: string[]): void; } export declare function DataTableNotifications(props: DataTableNotificationsProps): JSX.Element;