export default api;
declare namespace api {
    export { get };
}
/**
 * @param {string} url
 * @returns {Promise<ParsedChromsizes | null>}
 */
declare function get(url: string): Promise<ParsedChromsizes | null>;
import type { ParsedChromsizes } from '../utils/parse-chromsizes-rows';
