/// interface Props { shape?: 'default' | 'order' | 'text'; type?: 'default' | 'success' | 'warning' | 'error' | 'disabled' | 'processing' | 'processed'; children?: string; } export default function State(props: Props): JSX.Element; export {};