import { ButtonProps } from '../Button'; import { ComponentSize } from '../../atoms/types'; import { RefAttributes } from 'react'; export declare const actionButtonsVariants: (props?: ({ variant?: "filled" | "hugged" | "vertical" | null | undefined; } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string; type ActionButtonsVariantProps = { variant?: 'filled' | 'hugged' | 'vertical'; }; export type ActionButtonsProps = ActionButtonsVariantProps & ComponentSize & { primaryButtonProps: ButtonProps; secondaryButtonProps?: ButtonProps; tertiaryButtonProps?: ButtonProps; className?: string; } & RefAttributes; export {}; //# sourceMappingURL=types.d.ts.map