/** A file generated by the client */ export declare class InputFileGeneratedBaseModel { _: 'inputFileGenerated'; /** * Local path to a file from which the file is generated; may be empty if there is no * such file */ originalPath: string; /** * String specifying the conversion applied to the original file; should be persistent * across application restarts. Conversions beginning with '#' are reserved for internal * TDLib usage */ conversion: string; /** Expected size of the generated file; 0 if unknown */ expectedSize: number; }