import { tags } from "typia"; export interface IPaymentSource { schema: string; table: string; id: string & tags.Format<"uuid">; } export declare namespace IPaymentSource { interface IAccessor extends IPaymentSource, IPassword { } interface IPassword { password: string; } }