import type { Sx } from "@lattice-ui/style"; type GuiPropRecord = Record; export type SurfaceToken = "surface" | "elevated" | "sunken" | "overlay"; /** * Props-only surface helper. * Use this when you only want host props (including host border props). * It does not create child instances like UICorner/UIStroke/shadow nodes. */ export declare function surface(token: SurfaceToken): Sx; export {};