import { PropsWithBox } from '../Box'; interface SingleProps { type?: "single"; defaultValue?: string; value?: string; onValueChange?: (value: string) => void; } interface MultipleProps { type?: "multiple"; defaultValue?: string[]; value?: string[]; onValueChange?: (value: string[]) => void; } export type AccordionRootProps = PropsWithBox; export declare const Root: import('react').ForwardRefExoticComponent>; export {};