import type * as React from 'react'; /** * TopActions button props. * * @public */ export interface ITopActionsButtonProps { /** * Display text of the element. */ readonly text: string; /** * The button icon to display. */ readonly icon?: string; /** * Description of the action this button takes. */ readonly description?: string; /** * Whether the button is disabled. */ readonly disabled?: boolean; /** * The aria label of the button for the benefit of screen readers. */ readonly ariaLabel?: string; /** * Detailed description of the button for the benefit of screen readers. * *Button types will need more information provided to screen reader. */ readonly ariaDescription?: string; /** * Optional attribute used for when an SVG is used in a Button component * This is necessary to allow the SVG to be themed. This is an element using SVG tags such as: * * * * * @internal */ readonly themableSvg?: React.ReactElement; } //# sourceMappingURL=ITopActionsButton.d.ts.map