/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { PassThroughBody } from './PassThroughBody';
/**
 *
 * @export
 * @interface FilesSearch
 */
export interface FilesSearch {
    /**
     * The query to search for. May match across multiple fields.
     * @type {string}
     * @memberof FilesSearch
     */
    query: string;
    /**
     * ID of the drive to filter on
     * @type {string}
     * @memberof FilesSearch
     */
    drive_id?: string;
    /**
     *
     * @type {PassThroughBody}
     * @memberof FilesSearch
     */
    pass_through?: PassThroughBody;
}
export declare function FilesSearchFromJSON(json: any): FilesSearch;
export declare function FilesSearchFromJSONTyped(json: any, ignoreDiscriminator: boolean): FilesSearch;
export declare function FilesSearchToJSON(value?: FilesSearch | null): any;
