export declare type ExtendPath = { resource: 'file' | 'preset' | 'config'; id: string; path: string | null; name: string | null; }; export declare const parseExtendPath: (input: string) => ExtendPath;