type Orientation = "horizontal" | "vertical"; type RulerProps = { orientation?: Orientation; lengthPx?: number; windowId?: string; }; export default function Ruler({ lengthPx, windowId }: RulerProps): import("react").JSX.Element; export {};