import { type ExpandIamActionsOptions } from './expand.js'; export interface ExpandJsonDocumentOptions extends ExpandIamActionsOptions { invertNotActions: boolean; } /** * Takes any JSON document and expands any Action or NotAction string or array of strings in the document. * *MODIFIES THE DOCUMENT IN PLACE* * * @param options the options to use when expanding the actions * @param document the JSON document to expand * @param key the key of the current node in the document * @returns the original JSON document with any actions expanded in place */ export declare function expandJsonDocument(options: Partial, document: any, key?: string): Promise; //# sourceMappingURL=expand_file.d.ts.map