import type { HTMLAttributes, ReactNode } from 'react';
export interface PageProps extends HTMLAttributes<HTMLDivElement> {
    children: ReactNode;
}
/**
 * Root wrapper of every Apple Clean surface: renders `<div class="kwac">`, which
 * carries the color tokens, the Helvetica stack, the 17px/1.6 body type and the
 * near-white background. Every other component must sit inside a `Page`;
 * without it the tokens and base styles do not apply.
 */
export declare function Page({ className, children, ...rest }: PageProps): import("react").JSX.Element;
