declare class FileUploadRequest { private _table; private _columnName; private _legacySkyflowId?; constructor(table: string, columnNameOrSkyflowId: string, columnName?: string); get table(): string; set table(value: string); get columnName(): string; set columnName(value: string); /** @internal */ getLegacySkyflowId(): string | undefined; /** @deprecated Use FileUploadOptions.setSkyflowId() instead. Will be removed in v3. */ get skyflowId(): string; /** @deprecated Use FileUploadOptions.setSkyflowId() instead. Will be removed in v3. */ set skyflowId(value: string); } export default FileUploadRequest;