import { ReactElement } from 'react'; import { KauthLang } from '../../../common/locale'; interface WorkflowApproveProps { type?: 'default' | 'steps'; description?: string; cancellable?: any; size?: 'small' | 'middle' | 'large'; onSubmit: (params: any) => Promise; onCancel: (params: any) => Promise; locale?: KauthLang; } export declare function WorkflowApprove({ type, description, cancellable, size, onSubmit, onCancel, locale, }: WorkflowApproveProps): ReactElement; export {};