/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * */ export declare const PSEUDO_CLASS_PRIORITIES: Readonly<{ [$$Key$$: string]: number; }>; type AtRulePriorities = { '@supports': 30; '@media': 200; '@container': 300 }; export declare const AT_RULE_PRIORITIES: Readonly; export declare const PSEUDO_ELEMENT_PRIORITY: number; declare function getPriority(key: string): number; export default getPriority;