export interface GenMetadataProps { metadata?: Record; children?: any; [key: string]: any; } export declare function GenMetadata({ metadata, children, ...rest }: GenMetadataProps): import("react/jsx-runtime").JSX.Element;