type PagingParameters = { page: number | string, size: number | string } type isPhoneOptions = { exact: boolean, indian?: boolean } type Paging = { page: number, size: number } // type PagingParametersAlias = PagingParameters // type isPhoneOptionsAlias = isPhoneOptions // declare module '@motif/utils' { // export type PagingParameters = PagingParametersAlias // export type isPhoneOptions = isPhoneOptionsAlias // }