import type { ButtonCommonProps } from "../../primitives/ButtonPrimitive/types";
export type Type = "info" | "secondary" | "success" | "warning" | "critical" | "infoSubtle" | "successSubtle" | "warningSubtle" | "criticalSubtle";
type OmittedButtonCommonProps = Omit<ButtonCommonProps, "size">;
export type Props = {
    readonly type?: Type;
} & OmittedButtonCommonProps;
export {};
//# sourceMappingURL=types.d.ts.map