import * as React from 'react'; export interface FrameProps { /** Accepts a header component that will be rendered at the top-most portion of an application frame */ header: React.ReactNode; /** Accepts a navigation component that will be rendered in the left sidebar of an application frame */ navigation?: React.ReactNode; /** Text inside skip to content -link. Example: "Skip to main content" */ skipToContentText: string; /** The content to display inside the frame. */ children: React.ReactNode; } export declare function Frame({ header, navigation, skipToContentText, children }: FrameProps): React.JSX.Element; export declare namespace Frame { var Layout: import("styled-components").StyledComponent<"section", import("styled-components").DefaultTheme, {}, never>; var LayoutForm: import("styled-components").StyledComponent<"section", import("styled-components").DefaultTheme, {}, never>; var LayoutCentered: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>; var Section: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>; var SectionFormBackAction: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>; } //# sourceMappingURL=Frame.d.ts.map