import type { StyleProps } from '../../../commonTypes';
import type { NativePseudoSelectorKey } from '../../types/pseudo';
import type { CSSTransitionConfig } from './transition';
export type CSSPseudoStyleEntry = {
    selector: NativePseudoSelectorKey;
    selectorStyle: StyleProps;
    transition: CSSTransitionConfig;
};
export type CSSPseudoStyleConfig = {
    defaultStyle: StyleProps;
    selectors: CSSPseudoStyleEntry[];
};
//# sourceMappingURL=pseudo.d.ts.map