import type { LaraClient } from "./net/lara";
export interface Styleguide {
    id: string;
    name: string;
    content?: string;
    ownerId: string;
    createdAt: Date;
    updatedAt: Date;
    isPersonal: boolean;
}
export declare class Styleguides {
    private readonly client;
    constructor(client: LaraClient);
    list(): Promise<Styleguide[]>;
    get(id: string): Promise<Styleguide | null>;
}
