import * as React from "react"; export interface AppChromeProps { /** * Allows custom styling */ className?: string; /** * JSX to render along the left side */ sidebar?: React.ReactNode; /** * JSX to render as the navigation bar at the top */ headerBar?: React.ReactNode; /** * @deprecated This prop should not be used, use children instead */ mainContent?: React.ReactNode; /** * JSX for the main html element */ children?: React.ReactNode; /** * Human-readable selector used for writing tests */ "data-cy"?: string; } declare const AppChrome: ({ className, sidebar, headerBar, mainContent, children, "data-cy": dataCy }: AppChromeProps) => React.JSX.Element; export default AppChrome;