import type RawKeyRegister from '../rawkeys';
export interface FetcherOptions {
    url?: string;
}
export default abstract class KeyFetcher {
    options: FetcherOptions;
    constructor(options?: FetcherOptions);
    abstract fetch(): Promise<RawKeyRegister[]>;
}
