import React from "react"; import { type IconButtonProps } from "./ButtonProps.type"; type Props = IconButtonProps & { /** * When set to `true`, the button will have a negative margin to * "ignore" its own padding. This is useful when you want the button * to align based on its icon alone, and have the hover state extend * outside of the icon's bounds. * * @default false */ expand?: boolean; }; export declare const TertiaryIconButton: React.ForwardRefExoticComponent & React.RefAttributes>; export {};