import type { FC } from 'react'; import type { ApiModel, IMethod } from '@looker/sdk-codegen'; import type { RunItValues } from '../../RunIt'; export interface DocSdkCallsProps { api: ApiModel; method: IMethod; inputs: RunItValues; sdkLanguage: string; keepBody?: boolean; } export declare const DocSdkCalls: FC;