/** * Options data class for handling operations on ComponentDefinitions and their ComponentPayloads. */ export declare class ProcessorOperations { format?: boolean; normalize?: boolean; squash?: boolean; deformat?: boolean; rescript?: boolean; fillAutocomplete?: boolean; /** * @param operations A an array or a comma separated list of operations to be performed on the payload. Available keywords: feedAutocomplete,outline,format,apply,normalize,squash,deformat,rescript */ constructor(operations: string | string[] | any); }