/**
* List items from Stripe
* @example
List all payment intents
* list('payment_intents');
* @example List customers with options
* list('customers', {limit:3});
* @function
* @public
* @param {string} resource - The API resource to list items from.
* @param {object} options - Optional options object. See {@link https://docs.stripe.com/api/payment_intents/list|Stripe API documentation} for more details.
* @returns {Operation}
* @state data - an array of items
*/
export function list(resource: string, options?: object): Operation;
/**
* Get a single resource using its ID
* @example Get a payment intent
* get('payment_intents','pi_3RxS5EEAUr6ipfDB0aKo3moC');
* @example Get a customer
* get('customers','cus_SthTl85l20LRJj');
* @function
* @public
* @param {string} resource - The API path to retrieve.
* @param {string} id - The ID of the resource to retrieve.
* @returns {Operation}
* @state data - The requested resource object
*/
export function get(resource: string, id: string): Operation;
export { as, assert, combine, cursor, dataPath, dataValue, dateFns, each, field, fields, fn, fnIf, group, lastReferenceValue, map, merge, scrubEmojis, sourceValue, util } from "@openfn/language-common";