import { StatusDotProps } from '../../StatusDot'; export type StatusDotListType = typeof StatusDotList; export interface StatusDotListProps { /** Additional text to the bottom statusdot */ additionalText?: string; /** StatusDot that is under the others and outside the stacking */ bottomStatusDot?: React.ReactElement; /** Stacking of the statusdots */ stacking?: 'vertical' | 'horizontal'; /** StatusDots as children */ children?: React.ReactNode; /** Adds custom classes */ className?: string; /** Show a hidden for child statusdot over the other */ hiddenForChild?: boolean; /** Sets the data-testid attribute. */ testId?: string; /** StatusDot that is over the others and outside the stacking */ topStatusDot?: React.ReactElement; } export declare const StatusDotList: React.FC; export default StatusDotList;