/// export type CSTypes = { type: ConfirmationTypes; children: JSX.Element | JSX.Element[]; title?: string; subTitle?: string; comment?: string; onComment?: any; }; export type ConfirmationTypes = 'reject' | 'approve' | 'complete';