import type { RedirectUrlJSON } from './JSON';
export declare class RedirectUrl {
    readonly id: string;
    readonly url: string;
    readonly createdAt: number;
    readonly updatedAt: number;
    constructor(id: string, url: string, createdAt: number, updatedAt: number);
    static fromJSON(data: RedirectUrlJSON): RedirectUrl;
}
//# sourceMappingURL=RedirectUrl.d.ts.map