import { IBoolean } from '../../types'; export interface ListGroupTheme { root: ListGroupRootTheme; item: ListGroupItemTheme; } export interface ListGroupItemTheme { base: string; link: { base: string; active: IBoolean; disabled: IBoolean; href: IBoolean; icon: string; }; } export interface ListGroupRootTheme { base: string; bordered: { base: string; column: string; row: string; }; direction: { column: string; row: string; }; } export declare const listGroupTheme: ListGroupTheme; //# sourceMappingURL=theme.d.ts.map