export declare const pseudoSelectors: { _hover: string; _focus: string; _focusWithin: string; _focusVisible: string; _active: string; _visited: string; _selection: string; _before: string; _after: string; _placeholder: string; _hoverAndFocus: string; _disabled: string; _readOnly: string; _first: string; _last: string; _notFirst: string; _notLast: string; _checked: string; _odd: string; _even: string; }; declare type PseudoSelectors = typeof pseudoSelectors; export declare type PseudoProps

= { [K in keyof PseudoSelectors]?: K extends '_before' | '_after' ? (P & { content?: string; }) | PseudoProps

: P | PseudoProps

; }; export {};