import { React } from "@lattice-ui/core"; import type { Sx } from "@lattice-ui/style"; import type { SurfaceToken } from "./surface"; type StyleProps = React.Attributes & Record; export type SurfaceProps = { tone?: SurfaceToken; sx?: Sx; children?: React.ReactNode; } & StyleProps; /** * Decorated surface host primitive. * Unlike `surface()`, this renders instance-graph decoration via UICorner/UIStroke. * Host border props are not the canonical border representation here. * `asChild` is intentionally not supported in this milestone. */ export declare function Surface(props: SurfaceProps): React.JSX.Element; export {};