import { CSSProperties, Dict } from './types'; export declare const pseudoelements: { after: boolean; before: boolean; placeholder: boolean; selection: boolean; }; export declare const pseudoclasses: { active: boolean; checked: boolean; disabled: boolean; empty: boolean; enabled: boolean; focus: boolean; hover: boolean; invalid: boolean; required: boolean; target: boolean; valid: boolean; }; export declare type StyleKeyObj = Dict<{ styles: string; mediaQuery?: string; pseudoclass?: string; pseudoelement?: string; }> & { classNameKey: string; }; export default function getStyleKeysForProps( props: CSSProperties & { mediaQueries?: Dict; }, pretty?: boolean ): StyleKeyObj | null;