/**
 * 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.
 */
/**
 *
 * @export
 * @interface PassThroughQuery
 */
export interface PassThroughQuery {
    [key: string]: unknown | any;
    /**
     * All passthrough query parameters are passed along to the connector as is (?pass_through[search]=leads becomes ?search=leads)
     * @type {string}
     * @memberof PassThroughQuery
     */
    example_downstream_property?: string;
}
export declare function PassThroughQueryFromJSON(json: any): PassThroughQuery;
export declare function PassThroughQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): PassThroughQuery;
export declare function PassThroughQueryToJSON(value?: PassThroughQuery | null): any;
