import { ExtractExportsOptions } from '../index.ts';
export type ExportInfo = {
    name: string;
    exportKind?: 'type' | 'value' | null | undefined;
};
export declare function extractExports(sourcePath: string): Promise<ExportInfo[]>;
export declare function extractExportsFromFile(sourcePath: string, options: ExtractExportsOptions): Promise<ExportInfo[]>;
