/** * 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. * * */ import type { StrictReactDOMProps } from '../types/StrictReactDOMProps'; type StrictReactDOMPropsStyle = StrictReactDOMProps['style']; export { merge } from './css/merge'; declare const a: StrictReactDOMPropsStyle; declare const article: StrictReactDOMPropsStyle; declare const aside: StrictReactDOMPropsStyle; declare const b: StrictReactDOMPropsStyle; declare const bdi: StrictReactDOMPropsStyle; declare const bdo: StrictReactDOMPropsStyle; declare const blockquote: StrictReactDOMPropsStyle; declare const br: StrictReactDOMPropsStyle; declare const button: StrictReactDOMPropsStyle; declare const code: StrictReactDOMPropsStyle; declare const del: StrictReactDOMPropsStyle; declare const div: StrictReactDOMPropsStyle; declare const em: StrictReactDOMPropsStyle; declare const fieldset: StrictReactDOMPropsStyle; declare const footer: StrictReactDOMPropsStyle; declare const form: StrictReactDOMPropsStyle; declare const heading: StrictReactDOMPropsStyle; declare const header: StrictReactDOMPropsStyle; declare const hr: StrictReactDOMPropsStyle; declare const i: StrictReactDOMPropsStyle; declare const img: StrictReactDOMPropsStyle; declare const input: StrictReactDOMPropsStyle; declare const ins: StrictReactDOMPropsStyle; declare const kbd: StrictReactDOMPropsStyle; declare const label: StrictReactDOMPropsStyle; declare const li: StrictReactDOMPropsStyle; declare const main: StrictReactDOMPropsStyle; declare const mark: StrictReactDOMPropsStyle; declare const nav: StrictReactDOMPropsStyle; declare const ol: StrictReactDOMPropsStyle; declare const optgroup: StrictReactDOMPropsStyle; declare const option: StrictReactDOMPropsStyle; declare const p: StrictReactDOMPropsStyle; declare const pre: StrictReactDOMPropsStyle; declare const s: StrictReactDOMPropsStyle; declare const section: StrictReactDOMPropsStyle; declare const select: StrictReactDOMPropsStyle; declare const span: StrictReactDOMPropsStyle; declare const strong: StrictReactDOMPropsStyle; declare const sub: StrictReactDOMPropsStyle; declare const sup: StrictReactDOMPropsStyle; declare const textarea: StrictReactDOMPropsStyle; declare const u: StrictReactDOMPropsStyle; declare const ul: StrictReactDOMPropsStyle; export declare const defaultStyles: { a: typeof a; article: typeof article; aside: typeof aside; b: typeof b; bdi: typeof bdi; bdo: typeof bdo; blockquote: typeof blockquote; br: typeof br; button: typeof button; code: typeof code; del: typeof del; div: typeof div; em: typeof em; fieldset: typeof fieldset; footer: typeof footer; form: typeof form; h1: typeof heading; h2: typeof heading; h3: typeof heading; h4: typeof heading; h5: typeof heading; h6: typeof heading; header: typeof header; hr: typeof hr; i: typeof i; img: typeof img; input: typeof input; ins: typeof ins; kbd: typeof kbd; label: typeof label; li: typeof li; main: typeof main; mark: typeof mark; nav: typeof nav; ol: typeof ol; optgroup: typeof optgroup; option: typeof option; p: typeof p; pre: typeof pre; s: typeof s; section: typeof section; select: typeof select; span: typeof span; strong: typeof strong; sub: typeof sub; sup: typeof sup; textarea: typeof textarea; u: typeof u; ul: typeof ul; };