declare type ResourceKind = 'capture' | 'chargeback' | 'customer' | 'mandate' | 'order' | 'orderline' | 'organization' | 'payment' | 'permission' | 'profile' | 'refund' | 'shipment' | 'subscription'; /** * Returns whether the passed identifier seems plausible (`true`); or is definitely invalid (`false`). */ export default function checkId(value: string | undefined, resource: ResourceKind): value is string; export {};