declare class WorkflowStore { documentId: any; docListNbr: any; documentPermissions: any[]; constructor(); setDocumentId: (id: string) => void; setDocListNbr: (docListNbr: string) => void; setDocumentPermissions: (documentPermissions: Array<{ documentTypeCode: string; permissions: string[]; }>) => void; } declare const _default: WorkflowStore; export default _default;