import type { ComponentProps, FC } from 'react';
import React from 'react';
import type { DeepPartial } from '../../types';
import type { FlowbiteListGroupItemTheme } from './ListGroupItem';
export interface FlowbiteListGroupTheme {
    root: FlowbiteListGroupRootTheme;
    item: FlowbiteListGroupItemTheme;
}
export interface FlowbiteListGroupRootTheme {
    base: string;
}
export interface ListGroupProps extends ComponentProps<'ul'> {
    theme?: DeepPartial<FlowbiteListGroupTheme>;
}
export declare const ListGroup: FC<ListGroupProps> & {
    Item: FC<import("./ListGroupItem").ListGroupItemProps & React.ClassAttributes<HTMLAnchorElement> & React.AnchorHTMLAttributes<HTMLAnchorElement> & React.ClassAttributes<HTMLButtonElement> & React.ButtonHTMLAttributes<HTMLButtonElement>>;
};
