import { AccordionProps } from "../Accordion.interface"; export declare const itemsMock: { id: number; title: string; description: string; }[]; export interface AccordionTestComponentProps extends Omit { } export declare const AccordionTestComponent: ({ ...props }: AccordionTestComponentProps) => import("react/jsx-runtime").JSX.Element; export declare class AccordionObject { private _container; render(props?: Partial): this; get accordionContainer(): HTMLElement; get accordionBodys(): HTMLElement[]; get accordionButtons(): HTMLElement[]; clickAt(button: HTMLElement): Promise; assertAriaHidden(accordions: HTMLElement[], expandedIndex?: number): void; }