/** * CameraOverlayGuides - Camera viewfinder overlay guides * * Renders corner brackets and center focus frame for camera preview overlays. */ export interface CameraOverlayGuidesProps { /** Width of the preview area in NDC space */ ndcWidth: number; /** Height of the preview area in NDC space */ ndcHeight: number; /** * Show corner brackets at the four corners * @dial display * @dial-dtype boolean */ showCornerBrackets?: boolean; /** * Show center focus frame with crosshair * @dial display * @dial-dtype boolean */ showCenterFocus?: boolean; /** * Color for corner brackets * @dial display * @dial-dtype color */ cornerBracketColor?: string; /** * Color for center focus frame * @dial display * @dial-dtype color */ centerFocusColor?: string; } /** * Renders camera overlay guides including corner brackets and center focus frame. */ export declare function CameraOverlayGuides({ ndcWidth, ndcHeight, showCornerBrackets, showCenterFocus, cornerBracketColor, centerFocusColor, }: CameraOverlayGuidesProps): import("react/jsx-runtime").JSX.Element;