import type { ButtonCommonProps, Size, DownloadWithHrefConditionalProps, FullWidthConditionalProps } from "../primitives/ButtonPrimitive/types";
export type Type = "primary" | "secondary" | "critical";
export type Props = {
    readonly compact?: boolean;
    readonly type?: Type;
    readonly size?: Size;
} & ButtonCommonProps & FullWidthConditionalProps & DownloadWithHrefConditionalProps;
//# sourceMappingURL=types.d.ts.map