import { ApiKeyType } from "../../../api-key";
export interface AdminCreateApiKey {
    /**
     * The API key's title.
     */
    title: string;
    /**
     * The API key's type.
     */
    type: ApiKeyType;
}
export interface AdminUpdateApiKey {
    /**
     * The API key's title.
     */
    title: string;
}
export interface AdminRevokeApiKey {
    revoke_in?: number;
}
//# sourceMappingURL=payloads.d.ts.map