/**
 * Panel props
 * @expand
 */
export type PanelProps = {
    width?: number;
    height?: number;
    offset?: [number, number];
    opacity?: number;
    padding?: number;
    origin?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
};
/**
 * A simple HTML panel that can be used as an overlay on the 3d canvas.
 * @see {@link OutputPanel}
 * @group Components
 */
export declare const Panel: import('react').ForwardRefExoticComponent<PanelProps & {
    children?: import('react').ReactNode | undefined;
} & import('react').RefAttributes<HTMLDivElement>>;
