import * as react from 'react'; import { ReactNode } from 'react'; /** * — the 600×600 Meta Ray-Ban Display surface. * * The Display is an *additive* screen: pure black emits no light, so * black renders as transparent (the wearer sees the real world) and * everything you draw is light layered on top. Design rules that * follow from that: * * - Background stays pure black (#000). Don't fill it. * - Use few elements, high contrast, generous spacing. * - Light is the ink. Green / white read best. * * On the device the surface IS 600×600. Locally this renders a fixed * 600×600 panel with a faint frame so you can see the bounds — pass * `frame={false}` to drop it. */ declare function GlassViewport({ children, frame, }: { children: ReactNode; frame?: boolean; }): react.JSX.Element; export { GlassViewport };