export interface GroupsSkeletonProps {
    /**
     * Overrides or extends the styles applied to the component.
     * @default null
     */
    className?: string;
    /**
     * Overrides or extends the styles applied to the component.
     * @default null
     */
    GroupSkeletonProps?: any;
    /**
     * @default 20
     */
    groupsNumber?: number;
}
/**
 * > API documentation for the Community-JS Groups Skeleton component. Learn about the available props and the CSS API.

 #### Import

 ```jsx
 import {GroupsSkeleton} from '@selfcommunity/react-ui';
 ```

 #### Component Name

 The name `SCGroups-skeleton-root` can be used when providing style overrides in the theme.

 #### CSS

 |Rule Name|Global class|Description|
 |---|---|---|
 |root|.SCGroups-skeleton-root|Styles applied to the root element.|
 |groups|.SCGroups-skeleton-groups|Styles applied to the group elements.|
 *
 */
export default function GroupsSkeleton(inProps: GroupsSkeletonProps): JSX.Element;
