import React from 'react'; import type { FlexComponentProps } from 'reflexy/styled'; import type { NotificationBarProps } from './NotificationBar'; export interface NotificationCloseActionProps extends FlexComponentProps, Pick, 'id' | 'onAction'> { } export default function NotificationCloseAction({ id, onAction, children, ...rest }: React.PropsWithChildren>): React.JSX.Element;