import React from 'react'; import { CSS } from '../theme/stitches.config'; import { CollapseGroupVariantsProps } from './collapse.styles'; interface Props { accordion?: boolean; animated?: boolean; divider?: boolean; onChange?: (index?: number | undefined, value?: boolean) => void; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type CollapseGroupProps = Props & NativeAttrs & CollapseGroupVariantsProps & { css?: CSS; }; declare const _default: React.ComponentType & Omit, "accordion">>; export default _default;