/// <reference types="react" />
import { PageState } from '../../pages';
interface PropsType {
    pageState: PageState;
    setPageState: (key: PageState) => void;
    children: React.ReactNode;
}
export declare const ImportRight: ({ pageState, children, setPageState }: PropsType) => JSX.Element;
export {};
