import { Button } from './button.interface'; import { ButtonType, HtmlType } from './ontario-button.types'; /** * Ontario Button triggers actions and supports button or link behavior. * * This component intentionally does not expose a `disabled` prop. * * To support accessible and understandable form completion: * - keep actions available * - use validation and error messaging to guide corrections instead of disabling * * For component guidance, see: * - https://designsystem.ontario.ca/components/detail/buttons.html * - https://designsystem.ontario.ca/developer-docs/components/ontario-button/ * * Disabled/read-only policy source: * - https://designsystem.ontario.ca/components/detail/buttons.html#disabled-buttons */ export declare class OntarioButton implements Button { host: HTMLElement; internals: ElementInternals; /** * The type of button to render. * * If no type is passed, it will default to 'secondary'. */ type: ButtonType; /** * The native HTML button type the button should use. * * If no `htmlType` is passed, it will default to `'button'`. * This prop only affects the component when it renders as a native `