import { HTMLProps, PropsWithChildren } from 'react';
type ViewportProps = PropsWithChildren<{
    color?: string;
    contain?: boolean;
    attachToBody?: boolean;
} & HTMLProps<HTMLDivElement>>;
export declare function Viewport({ children, color, contain, attachToBody, ...props }: ViewportProps): import("react/jsx-runtime").JSX.Element;
export {};
