import type { XrdPattern } from './index'; export declare function parse_xy_file(content: string, format?: string): XrdPattern; export declare function parse_block_scan(content: string, format?: string): XrdPattern; export declare function parse_rigaku_asc_file(content: string): XrdPattern; export declare function parse_ras_file(content: string): XrdPattern; export declare function parse_uxd_file(content: string): XrdPattern; export declare function parse_gsas_file(content: string): XrdPattern; export declare function parse_bruker_raw_file(data: ArrayBuffer): XrdPattern; export declare function parse_brml_file(data: ArrayBuffer): Promise; export declare function parse_xrdml_file(content: string): XrdPattern; export declare const is_xrd_data_file: (filename: string) => boolean; export declare function parse_xrd_file(content: string | ArrayBuffer, filename: string): Promise;