import React from "react"; import type { Property } from "csstype"; export type ExpandableProps = { /** `id` can be referenced by the button trigger's aria-controls attribute to establish accessibility linkage. */ id?: string; children: React.ReactNode; isExpanded?: boolean; /** Internally overflow is set to hidden when collapsed. Use this prop to restore overflow on expand */ overflow?: Property.Overflow; reduceMotion?: boolean; }; export declare function Expandable({ id, isExpanded, children, overflow, reduceMotion, ...ariaAttributes }: ExpandableProps): React.ReactElement;