import type { Attribute, AttributeChange, AttributeChangeResult, RenderExtensionPoint } from '@shopify/checkout-ui-extensions'; /** * Returns the proposed `attributes` applied to the checkout. */ export declare function useAttributes(): Attribute[] | undefined; /** * Returns the values for the specified `attributes` applied to the checkout. * * @param keys - An array of attribute keys. */ export declare function useAttributeValues(keys: string[]): (string | undefined)[]; /** * Returns a function to mutate the `attributes` property of the checkout. */ export declare function useApplyAttributeChange(): (change: AttributeChange) => Promise; //# sourceMappingURL=attributes.d.ts.map