import React from 'react'; interface LogoProps { themeConfig: { logo: { src?: string; alt?: string; width?: number; height?: number; }; }; } export default function Logo({ themeConfig: { logo: { src, alt, width, height } } }: LogoProps): React.JSX.Element; export declare const layout: { areaId: string; sortOrder: number; }; export declare const query = "\n query query {\n themeConfig {\n logo {\n src\n alt\n width\n height\n }\n }\n }\n"; export {};