import { PostgreSQL } from "../postgres/types";
export interface Settings {
    readonly google_analytics: string | undefined;
    readonly dns: string;
    readonly site_name: string;
}
export declare class SettingsDAO {
    private database;
    constructor(database: PostgreSQL);
    get(): Promise<Settings>;
}
