import { BoxStyleProps, PseudoClassesType } from '../types'; export default function useStyles(props: BoxStyleProps, isSvg: boolean): string[]; export declare function useGlobalStyles(props: BoxStyleProps | undefined, selector: string): void; declare namespace StylesContextImpl { function addClassNames(props: BoxStyleProps, classNames: string[], currentPseudoClasses: PseudoClassesType[], breakpoint?: string, pseudoClassParentName?: string, rootSelector?: string): void; function flush(): void; function clear(): void; } export declare namespace StylesContext { const flush: typeof StylesContextImpl.flush; const clear: typeof StylesContextImpl.clear; } export {};