/**
 * Returns id or extracted id from stripe instance
 */
declare const extractIdFromStripeInstance: <T extends {
    id: string;
}>(data: string | T) => string;
export { extractIdFromStripeInstance as default };
