import { Expression, PropertyAssignment, PropertyName } from 'typescript'; import { Builder } from './types'; export declare type PropertyAssignmentBuilderOptions = { name: string | Builder; initializer: Builder; }; export declare class PropertyAssignmentBuilder implements Builder { private options; constructor(options: PropertyAssignmentBuilderOptions); build(): PropertyAssignment; copy(): Builder; } //# sourceMappingURL=PropertyAssignmentBuilder.d.ts.map