/**
 * Raw response from the integration when raw=true query param is provided
 * @export
 * @interface Raw
 */
export interface Raw {
    [key: string]: unknown;
}
export declare function RawFromJSON(json: any): Raw;
export declare function RawFromJSONTyped(json: any, ignoreDiscriminator: boolean): Raw;
export declare function RawToJSON(value?: Raw | null): any;
