import { StackProps } from '@mui/material/Stack';
import { ICardBadgesProps } from '../Card.container';
export type ICardBadgesConfig = ICardBadgesProps & {
    sx?: StackProps['sx'];
    skip?: boolean;
    classPrefix: string;
};
export declare const useCardBadges: (config: ICardBadgesConfig) => {
    renderStatusBadges: import("react/jsx-runtime").JSX.Element | null;
};
