import type { Chip } from '..'; /** * Page object for the `nimble-chip` component to provide consistent ways * of querying and interacting with the component during tests. */ export declare class ChipPageObject { protected readonly chipElement: Chip; constructor(chipElement: Chip); isRemoveButtonVisible(): boolean; getRemoveButtonTextContent(): string; clickRemoveButton(): void; getRemoveButtonTabIndex(): string | null; private getRemoveButton; }