import { SpaceType, ViewPort } from './types/cskTypes.mjs'; import { T as TextProps } from './index-CrBZatTs.mjs'; type HeightType = 'full' | 'screen' | 'svh' | 'lvh' | 'dvh' | 'min' | 'max' | 'fit'; type ContainerParameters = { displayName?: string; anchor?: string; backgroundColor?: string; spacing?: SpaceType | ViewPort; border?: string | ViewPort; fluidContent?: boolean; height?: HeightType | ViewPort; }; type TextParameters = { text?: string; tag?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span'; size?: TextProps['size']; color?: string; weight?: TextProps['weight']; font?: string; alignment?: TextProps['alignment']; transform?: TextProps['transform']; decoration?: TextProps['decoration']; letterSpacing?: TextProps['letterSpacing']; lineCountRestrictions?: string; }; export type { ContainerParameters as C, TextParameters as T };