import { Client } from './Client';
/**
 * Represents a data model on Guilded.
 * @example new Base(client, id);
 */
export declare class Base<Id = string> {
    readonly client: Client;
    readonly id: Id;
    /**
     * @param client The client the data model belongs to.
     * @param id The ID of the structure.
     */
    constructor(client: Client, id: Id);
}
//# sourceMappingURL=Base.d.ts.map