import { type FMHostMetadata } from '../types.js';
import { type Moment } from 'moment';
export interface HostBase {
    readonly hostname: string;
    readonly protocol: string;
    readonly timezoneOffsetFunc: (moment: Moment) => number;
    readonly verify: boolean;
    metadata: FMHostMetadata;
    getMetadata: () => PromiseLike<any>;
    timeFormat: string;
    dateFormat: string;
    timeStampFormat: string;
}
