import { StyledProps } from "./compose"; export declare const pseudoMappings: { readonly _hover: ":hover"; readonly _focus: ":focus"; }; export type PseudoProps = { [key in keyof typeof pseudoMappings]?: StyledProps; }; export declare const isPseudoProps: (_props: unknown) => _props is "_hover" | "_focus";