export interface DeclarationPath {
    path: string;
    type: 'package' | 'file';
}
export declare function getDeclarationsPaths(paths: DeclarationPath[]): string[];
