import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface PathProps { src?: string | null; path?: string | null; children: ReactNode; } export declare const Path: MdxComponent; export {};