import { Locator, Page } from '@playwright/test'; import { KindClusterOptions } from '../core/types'; import { CreateClusterBasePage } from './cluster-creation-base-page'; export declare class CreateKindClusterPage extends CreateClusterBasePage { readonly clusterNameField: Locator; readonly controllerCheckbox: Locator; readonly providerType: Locator; readonly httpPort: Locator; readonly httpsPort: Locator; readonly containerImage: Locator; readonly configFileInput: Locator; readonly configFileBrowseButton: Locator; readonly warning: Locator; constructor(page: Page); private validateKindClusterDefaultSettings; createKindCluster(clusterName?: string, { configFilePath, providerType, httpPort, httpsPort, useIngressController, containerImage }?: KindClusterOptions, timeout?: number): Promise; }