import type { GetTextOptions, ExtractionSpec, ExtractResult } from './types'; export declare function text(html: string, selector: string, options?: GetTextOptions): string; export declare function texts(html: string, selector: string, options?: GetTextOptions): string[]; export declare function selectAttr(html: string, selector: string, attribute: string): string | undefined; export declare function selectAttrs(html: string, selector: string, attribute: string): string[]; export declare function extract(html: string, spec: T): ExtractResult; //# sourceMappingURL=convenience.d.ts.map