import { PrimitiveValue } from './types'; declare type DefaultPseudoProps = 'sm' | 'md' | 'first' | 'last' | 'odd' | 'even' | 'hover' | 'focus' | 'focusWithin' | 'active' | 'visited' | 'groupHover' | 'groupFocus' | 'disabled'; export declare type Pseudo = { [key in P | 'default']?: T; }; export declare const isNegative: (v: PrimitiveValue) => boolean; export declare const buildClassname: (p: string, v: PrimitiveValue) => string; export declare const computePseudoClasses: (prop: string, val: PrimitiveValue | Pseudo) => string; export {};