import { ReactNode } from 'react'; import { SectionHelperProps } from '@wix/design-system'; export interface TableTopNotificationProps extends Partial { /** * After the notification close animation finished */ onAfterClose?: () => unknown; /** * After the notification open animation finished */ onAfterOpen?: () => unknown; /** hide the notification when search is applied. @default false */ hideOnSearch?: boolean; children?: ReactNode; } declare function _TableTopNotification(props: TableTopNotificationProps): JSX.Element; export declare const TableTopNotification: typeof _TableTopNotification & { displayName: string; }; export {}; //# sourceMappingURL=TableTopNotification.d.ts.map