export interface CustomerPlaybookEntry { name: string; uri: string; mimeType: string; apiUrl: string; pageUrl: string; } export interface CustomerPlaybookIndex { projectKey?: string; displayName?: string; generatedAt?: string; resources: CustomerPlaybookEntry[]; requiredReading: string[]; } export interface CustomerPlaybookContent { name: string; uri: string; mimeType: string; text: string; } export declare function buildCustomerPlaybookIndex(origin: string, editorPackPath?: string): CustomerPlaybookIndex | null; export declare function readCustomerPlaybook(resourceName: string, editorPackPath?: string): CustomerPlaybookContent | null; //# sourceMappingURL=customer-playbooks.d.ts.map