import { odsGetUnitTestAttributeContextOptions } from '@ovhcloud/ods-testing'; import { SpecPage } from '@stencil/core/testing'; /** * @example * ```typescript * odsUnitTestAttribute({ * ...getAttributeContextOptions({ * name: 'color', * list: OdsThemeColorIntentList, * defaultValue: odsButtonDefaultAttributes.color, * page: () => page, * instance: () => instance, * setup * }) * }); * }) * ``` */ export declare function getAttributeContextOptions({ name, list, defaultValue, page, instance, setup }: odsGetUnitTestAttributeContextOptions & { instance: () => InstanceType; page: () => SpecPage; setup: (...args: unknown[]) => Promise; }): Pick | undefined>, "name" | "newValue" | "value" | "root" | "setup" | "defaultValue" | "instance" | "wait" | "exclude">;