import * as $dara from '@darabonba/typescript'; export declare class ListClusterKubeconfigStatesRequest extends $dara.Model { /** * @remarks * Specifies whether to query the KubeConfig list of cloud service roles in the cluster. Valid values: * * - true: queries the KubeConfig list of cloud service roles in the cluster. * - false: queries the KubeConfig list of Resource Access Management (RAM) users or roles in the cluster. * * @example * true */ cloudServiceKubeConfig?: boolean; /** * @remarks * The page number. * * - Valid values: 1 or greater. * * - Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of records per page. * - Valid values: 1 to 50. * * - Default value: 10. * * @example * 10 */ pageSize?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }