import { ElementType } from 'react'; import { ButtonProps } from './Button.js'; /** * `ToolbarButton` accepts the full `Button` API. When rendered inside a `Toolbar`, `size`, `rounded`, `variant`, and `outline` default to the values supplied by the parent toolbar context - pass them explicitly here to override per-button. */ export type ToolbarButtonProps = ButtonProps; /** Shape of `ToolbarButton` defaults that can be supplied via `CladdProvider`'s `defaults` prop. */ export type ToolbarButtonDefaultProps = Partial>; export declare const ToolbarButton: (props: ToolbarButtonProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ToolbarButton.d.ts.map