/** * Represents a file object. * * A file object typically includes a URL pointing to a file and an optional caption. * * @deprecated Please use types instead of interfaces. * @ignore */ interface FileObject { /** * The URL of the file. */ url: string; /** * An optional caption to accompany the file. */ caption?: string; } export type { FileObject };