import { OnyxButtonProps } from '../OnyxButton/types.js'; export type OnyxSystemButtonProps = Pick & { /** * Button label / text to show. Is always required (even if `icon` is set) for screen readers / accessibility. */ label: string; /** * Icon to show. Will visually hide the label if set. */ icon?: string; /** * Button color. */ color?: SystemButtonColor; }; export declare const SYSTEM_BUTTON_COLORS: readonly ["intense", "soft", "medium"]; export type SystemButtonColor = (typeof SYSTEM_BUTTON_COLORS)[number];