import React from 'react'; interface CopyRightProps { themeConfig: { copyRight: string; }; } declare function CopyRight({ themeConfig: { copyRight } }: CopyRightProps): React.JSX.Element; declare namespace CopyRight { var defaultProps: { themeConfig: { copyRight: string; }; }; } export default CopyRight; export declare const layout: { areaId: string; sortOrder: number; }; export declare const query = "\n query query {\n themeConfig {\n copyRight\n }\n }\n";