import * as React from 'react'; import type { AnchorHTMLAttributesOnly } from '../../types'; import type { AlertActionInterface } from './Alert'; export interface AlertActionProps extends Pick, AnchorHTMLAttributesOnly { /** * Содержимое компонента. */ children: string; /** * Обработчик нажатия. */ onClick: React.MouseEventHandler; } export declare const AlertAction: (props: AlertActionProps) => React.ReactNode; //# sourceMappingURL=AlertAction.d.ts.map