react-native-a11y-container
Version:
UIAccessibilityContainer component for ReactNative
15 lines • 500 B
TypeScript
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