import { ReactNode } from 'react'; export type AppContainerProps = { /** * App header, usually `AppHeader` */ header?: ReactNode; /** * App content */ children?: ReactNode; /** * App footer, usually `AppFooter` */ footer?: ReactNode; /** * An escape hatch to tweak styling of internal elements */ elementsClassNames?: Partial<{ header: string; footer: string; content?: string; }>; settingsInitiallyPinned?: boolean; settingsPinningEnabled?: boolean; className?: string; testId?: string; }; export declare const AppContainer: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=AppContainer.d.ts.map