import { DaisySize } from '../types';
export declare const convertPropsToClasses: ({ color, size, variant, }: {
    color?: "primary" | "secondary" | "tertiary" | "high-contrast" | "success" | "warning" | "danger";
    size?: DaisySize;
    variant?: "counter" | "filled" | "text";
}) => string;
