/// import type { PDSTextType } from '../../../common'; export type StatusBlockProps = { text?: PDSTextType; size?: 'large' | 'medium' | 'small'; state?: 'basic' | 'standby' | 'proceeding' | 'cancel' | 'end' | 'error'; width?: number | 'responsive'; }; export type StyleProps = { $width?: number | 'responsive'; }; declare function StatusBlock({ text, size, state, width }: StatusBlockProps): JSX.Element; export default StatusBlock;