import type { ElementType, MouseEvent } from 'react'; import type React from 'react'; type secondaryAction = { label: string; onClick: (event: MouseEvent) => void; }; export type Props = { 'aria-label'?: string; buttonId?: string; buttonStyle?: 'error' | 'icon-label' | 'none' | 'pill' | 'primary' | 'secondary' | 'subtle' | 'tab' | 'transparent'; children?: React.ReactNode; className?: string; disabled?: boolean; el?: 'anchor' | 'link' | ElementType; /** * Setting to `true` will allow the submenu to be opened when the button is disabled */ enableSubMenu?: boolean; extraButtonProps?: Record; icon?: ['chevron' | 'edit' | 'plus' | 'x'] | React.ReactNode; iconPosition?: 'left' | 'right'; iconStyle?: 'none' | 'with-border' | 'without-border'; id?: string; /** * @deprecated * This prop is deprecated and will be removed in the next major version. * Components now import their own `Link` directly from `next/link`. */ Link?: React.ElementType; margin?: boolean; newTab?: boolean; onClick?: (event: MouseEvent) => void; onMouseDown?: (event: MouseEvent) => void; /** * Enables form submission via an onClick handler. This is only needed if * type="submit" does not trigger form submission, e.g. if the button DOM * element is not a direct child of the form element. * * @default false */ programmaticSubmit?: boolean; ref?: React.RefObject; round?: boolean; secondaryActions?: secondaryAction | secondaryAction[]; size?: 'large' | 'medium' | 'small' | 'xsmall'; SubMenuPopupContent?: (props: { close: () => void; }) => React.ReactNode; to?: string; tooltip?: string; type?: 'button' | 'submit'; url?: string; }; export {}; //# sourceMappingURL=types.d.ts.map