import type { ReactNode } from "react"; import { type FlexProps } from "../Flex/Flex"; interface ApplicationFrameProps extends FlexProps { navBar?: ReactNode; environment?: string; children?: ReactNode; } declare const ApplicationFrame: ({ navBar, children, environment, ...props }: ApplicationFrameProps) => import("react/jsx-runtime").JSX.Element; export default ApplicationFrame;