UNPKG

616 BTypeScriptView Raw
1import * as React from 'react';
2import { ButtonProps } from '../Button';
3export interface AlertToggleExpandButtonProps extends ButtonProps {
4 /** Aria label for the toggle button */
5 'aria-label'?: string;
6 /** A callback for when the toggle button is clicked */
7 onToggleExpand?: () => void;
8 /** Flag to indicate if the content is expanded */
9 isExpanded?: boolean;
10 /** Variant label for the toggle button */
11 variantLabel?: string;
12}
13export declare const AlertToggleExpandButton: React.FunctionComponent<AlertToggleExpandButtonProps>;
14//# sourceMappingURL=AlertToggleExpandButton.d.ts.map
\No newline at end of file