export type InputSourceType = 'remote_url' | 'local_relative' | 'local_absolute'; export declare function isRemoteUrl(inputPath: string): boolean; export declare function getInputSourceType(inputPath: string): InputSourceType;