export interface ApprovalFlowLocalization { /** * strings in approval flow page */ approvalFlow: { /** * Approval flow page title */ title: string; /** * Approval flow page description */ description: string; /** * Approve button text */ approve: string; /** * Reject button text */ reject: string; /** * Success title */ successTitle: string; /** * Success description */ successDescription: string; /** * Failed title */ failedTitle: string; /** * Failed description */ failedDescription: string; /** * Invalid link title */ invalidLinkTitle: string; /** * Invalid link description */ invalidLinkDescription: string; /** * Requester */ requester: string; /** * Request date */ requestDate: string; }; }