import { ReactNode } from 'react'; import { CssFunction, BasicTemplateInterpolations } from '../types'; export interface ClassNamesProps { children: (opts: { css: (css: CssFunction | CssFunction[], ...interpoltations: BasicTemplateInterpolations[]) => string; style: { [key: string]: string; }; }) => ReactNode; } export declare function ClassNames(_: ClassNamesProps): JSX.Element;