import { FC } from 'react';
declare type FrameProps = {
    title?: string;
    nav?: JSX.Element;
};
declare const Frame: FC<FrameProps>;
export default Frame;
