import { Model } from 'mongoose';
export interface IVanityAddr extends Document {
    id: string;
    address: string;
    secret: string;
    used: boolean;
    createdAt: Date;
    updatedAt: Date;
}
export declare const VanityAddrModel: Model<IVanityAddr>;
