import { DataReference, FieldSymbol, Structure, Table } from "../types"; import { ICharacter } from "../types/_character"; import { INumeric } from "../types/_numeric"; export interface IAssignInput { source?: INumeric | ICharacter | Table | Structure | DataReference | FieldSymbol; target: FieldSymbol; dynamicName?: string; dynamicSource?: ICharacter; casting?: boolean; component?: string | ICharacter; } export declare function assign(input: IAssignInput): void;