import { StyleSelectorType } from "./StyleSelector"; export declare const createPseudoSelector: (type: string) => PseudoSelectorType; export declare type PseudoSelectorType = StyleSelectorType & { type: string; }; export declare const active: PseudoSelectorType; export declare const disabled: PseudoSelectorType; export declare const focus: PseudoSelectorType; export declare const hover: PseudoSelectorType; export declare const isPseudoSelectorType: (selectorType: StyleSelectorType) => selectorType is PseudoSelectorType;