import { agreementTypes } from './constant'; type AgreementType = keyof typeof agreementTypes; export interface AgreementIconProps { type?: AgreementType; hasSavedCard?: boolean; totalPaymentsCount?: number; isTextShown?: boolean; } export {};