import { ButtonProps } from './Button';
/**
 * Extends all the style properties from Box to our buttons as well as props from ButtonProps.
 * We omit `ref` since all of our buttons use `createComponent` and already give access to `ref`.
 * Use this type to extend and customize any one off buttons that you want full control over styling.
 */
export interface TertiaryButtonProps extends ButtonProps {
    /**
     * Variant has an option for `inverse` which will inverse the styling
     */
    variant?: 'inverse';
}
export declare const TertiaryButton: import("@workday/canvas-kit-react/common").ElementComponent<"button", TertiaryButtonProps>;
//# sourceMappingURL=TertiaryButton.d.ts.map