import userEvent from '@testing-library/user-event'; import { axe } from './axe'; import { itConnectsLabelAndInput } from './inputs/it-connects-label-and-input'; import { itHandlesSwitchCheckboxState } from './inputs/it-handles-switch-checkbox-state'; import { itSupportsInputAsterisk } from './inputs/it-supports-input-asterisk'; import { itSupportsInputContainer } from './inputs/it-supports-input-container'; import { itSupportsInputProps } from './inputs/it-supports-input-props'; import { itSupportsInputSections } from './inputs/it-supports-input-sections'; import { itSupportsInputWrapperElements } from './inputs/it-supports-input-wrapper-elements'; import { itSupportsInputWrapperOrder } from './inputs/it-supports-input-wrapper-order'; import { itSupportsInputWrapperProps } from './inputs/it-supports-input-wrapper-props'; import { itSupportsSystemProps } from './it-supports-system-props'; import { itHasClasses } from './shared/it-has-classes'; import { itHasExtend } from './shared/it-has-extend'; import { itIsPolymorphic } from './shared/it-is-polymorphic'; import { itRendersChildren } from './shared/it-renders-children'; import { itSupportsClassName } from './shared/it-supports-classname'; import { itSupportsFocusEvents } from './shared/it-supports-focus-events'; import { itSupportsHiddenVisible } from './shared/it-supports-hidden-visible'; import { itSupportsId } from './shared/it-supports-id'; import { itSupportsLightDarkHidden } from './shared/it-supports-light-dark-hidden'; import { itSupportsMod } from './shared/it-supports-mod'; import { itSupportsOthers } from './shared/it-supports-others'; import { itSupportsProviderDefaultProps } from './shared/it-supports-provider-default-props'; import { itSupportsRef } from './shared/it-supports-ref'; import { itSupportsSize } from './shared/it-supports-size'; import { itSupportsStyle } from './shared/it-supports-style'; import { itSupportsStylesApi } from './shared/it-supports-style-api'; import { itSupportsVariant } from './shared/it-supports-variant'; import { itThrowsContextError } from './shared/it-throws-context-error'; import { itSupportsBackgroundProps } from './style-props/it-supports-background-props'; import { itSupportsColorsProps } from './style-props/it-supports-colors-props'; import { itSupportsFontsProps } from './style-props/it-supports-fonts-props'; import { itSupportsMarginsProps } from './style-props/it-supports-margins-props'; import { itSupportsPaddingsProps } from './style-props/it-supports-paddings-props'; import { itSupportsPositionProps } from './style-props/it-supports-position-props'; import { itSupportsSizeProps } from './style-props/it-supports-size-props'; export declare const tests: { itIsPolymorphic: typeof itIsPolymorphic; itRendersChildren: typeof itRendersChildren; itSupportsClassName: typeof itSupportsClassName; itSupportsOthers: typeof itSupportsOthers; itSupportsRef: typeof itSupportsRef; itSupportsStyle: typeof itSupportsStyle; itSupportsFocusEvents: typeof itSupportsFocusEvents; itSupportsProviderDefaultProps: typeof itSupportsProviderDefaultProps; itSupportsStylesApi: typeof itSupportsStylesApi; itThrowsContextError: typeof itThrowsContextError; itSupportsVariant: typeof itSupportsVariant; itSupportsSize: typeof itSupportsSize; itHasExtend: typeof itHasExtend; itHasClasses: typeof itHasClasses; itSupportsHiddenVisible: typeof itSupportsHiddenVisible; itSupportsLightDarkHidden: typeof itSupportsLightDarkHidden; itSupportsId: typeof itSupportsId; itSupportsMod: typeof itSupportsMod; itSupportsMarginsProps: typeof itSupportsMarginsProps; itSupportsPaddingsProps: typeof itSupportsPaddingsProps; itSupportsColorsProps: typeof itSupportsColorsProps; itSupportsFontsProps: typeof itSupportsFontsProps; itSupportsSizeProps: typeof itSupportsSizeProps; itSupportsBackgroundProps: typeof itSupportsBackgroundProps; itSupportsPositionProps: typeof itSupportsPositionProps; itSupportsInputSections: typeof itSupportsInputSections; itSupportsInputContainer: typeof itSupportsInputContainer; itSupportsInputAsterisk: typeof itSupportsInputAsterisk; itSupportsInputWrapperOrder: typeof itSupportsInputWrapperOrder; itSupportsInputWrapperElements: typeof itSupportsInputWrapperElements; itHandlesSwitchCheckboxState: typeof itHandlesSwitchCheckboxState; itConnectsLabelAndInput: typeof itConnectsLabelAndInput; itSupportsSystemProps: typeof itSupportsSystemProps; itSupportsInputWrapperProps: typeof itSupportsInputWrapperProps; itSupportsInputProps: typeof itSupportsInputProps; axe: typeof axe; }; export { render, renderWithAct } from './render'; export { wait } from './wait'; export { patchConsoleError, patchConsoleWarn } from './patch-console-error'; export { createContextContainer } from './create-context-container'; export { inputDefaultProps, inputStylesApiSelectors } from './inputs/inputs-test-props'; export * from './queries'; export { screen } from '@testing-library/react'; export { userEvent };