/** * 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 { StyleXStyles, StyleXStylesWithout, StaticStyles, Theme, VarGroup } from '@stylexjs/stylex'; import * as html from './html'; import * as css from '@stylexjs/stylex'; type StyleTheme = Theme; type StyleVars = VarGroup; type Styles = StyleXStyles; type StylesWithout = StyleXStylesWithout; export type { StaticStyles, StyleTheme, StyleVars, Styles, StylesWithout }; export { css, html };