import { type HTMLAttributes, type ReactNode } from "react";
export interface AppLayoutProps extends HTMLAttributes {
sidebar?: ReactNode;
topbar?: ReactNode;
children: ReactNode;
}
export declare const AppLayout: import("react").ForwardRefExoticComponent>;