import { Resource } from '../../../Resource'; import { type DuffelResponse } from '../../../types/ClientType'; import { type ComponentClientKey } from './types'; /** * A component client key is a unique identifier that allows you to authenticate with the Duffel API. */ export declare class ComponentClientKeys extends Resource { /** * Endpoint path */ path: string; constructor(args: any); /** * A component client key is a unique identifier that allows you to authenticate with the Duffel API. * @param data A JSON object containing the data to create a new component client key */ create: (data?: Record) => Promise>; }