import { DaisySize } from '../types';
export declare const convertPropsToClasses: ({ color, disabled, fullWidth, shape, size, variant, }: {
    color?: "primary" | "secondary" | "tertiary" | "warning" | "danger";
    disabled?: boolean;
    fullWidth?: boolean;
    shape?: "circle" | "rectangle" | "square";
    size?: DaisySize;
    variant?: "borderless" | "filled" | "outlined";
}) => string;
