import { ReactNode } from "react"; declare type FrameAreaName = "appbar" | "topbar" | "main" | "bottombar"; interface FrameProps { children: ReactNode; } interface FrameAreaProps { children: ReactNode; name: FrameAreaName; } export declare const FrameArea: ({ children, name }: FrameAreaProps) => JSX.Element; export declare const Frame: { ({ children }: FrameProps): JSX.Element; Area: ({ children, name }: FrameAreaProps) => JSX.Element; }; export {};