export interface AgencyPlan {
    /**
     * Unique identifier for the client.
     */
    id: number;
    /**
     * Identifier for the associated agency.
     */
    agency_id: number;
    staff: number;
    domains: number;
    /**
     * Timestamp indicating when the entity was last updated.
     */
    updated_at: string;
    /**
     * Timestamp indicating when the entity was created.
     */
    created_at: string;
}
export declare namespace AgencyPlan { }
