/**
 * Contains information about the variables created when inserting an OpenCL call.
 */
export default class OpenCLCallVariables {
    id: string;
    constructor(id: string);
    getKernelFile(): string;
    getKernelString(): string;
    getKernelStringSize(): string;
    getErrorCode(): string;
    getNumPlatforms(): string;
    getPlatformId(): string;
}
//# sourceMappingURL=OpenCLCallVariables.d.ts.map