import { DataAttributes } from '../../types';
import { PropsWithBox } from '../..';
import { ReactNode } from 'react';

export type ItemGroupTriggerProps = PropsWithBox<DataAttributes & {
    children: ReactNode;
    active?: boolean;
    url?: string;
    size?: "small" | "medium" | "large";
}>;
export declare const Trigger: {
    ({ children, size, ...rest }: ItemGroupTriggerProps): JSX.Element;
    displayName: string;
};
