/** * Types and utilities for defining styles, particularly useful for working with `makeStyles` * in {@link https://storybooks.fluentui.dev/react/ | \@fluentui/react-components}. * * @module @sorrell/react/Style * * @file Style.ts * @author Gage Sorrell * @copyright (c) 2026 Gage Sorrell * @license MIT */ import type { ReadonlyRecord } from "effect/Record"; export type RootStyle = "Root"; export type Styles = ReadonlyRecord; export interface Styled { readonly Style: Styles; } export type Unstyled = Omit; //# sourceMappingURL=Style.d.ts.map