import type { Generic } from 'adopted-style-sheets';
declare const buttonVariantPropTypeOptions: readonly ["primary", "secondary", "normal", "tertiary", "danger", "ghost", "custom"];
export type ButtonVariantPropType = (typeof buttonVariantPropTypeOptions)[number];
export type PropButtonVariant = {
    variant: ButtonVariantPropType;
};
export declare const validateButtonVariant: (component: Generic.Element.Component, value?: ButtonVariantPropType) => void;
export {};
