import type { Notarize, NotarizeOptions } from './';
export declare class TemplateApi {
    client: Notarize;
    constructor(client: Notarize, options?: NotarizeOptions);
    list(limit?: number, offset?: number): Promise<{
        success: boolean;
        totalCount: number;
        templates: {
            id: string;
            name: string;
            createdAt: string;
            updatedAt: string;
        }[];
        error?: string;
    }>;
}
