UNPKG

react-native-a11y-container

Version:
15 lines 500 B
import React from 'react'; import type { ViewProps } from 'react-native'; export declare enum A11yContainerTypes { None = 0, DataTable = 1, List = 2, Landmark = 3, SemanticGroup = 4 } export type A11yContainerTypeKeys = keyof typeof A11yContainerTypes; export interface A11yContainerProps extends ViewProps { type?: A11yContainerTypeKeys; } export declare const A11yContainerView: React.NamedExoticComponent<A11yContainerProps>; //# sourceMappingURL=A11yContainerView.d.ts.map