import { ReactElement, ComponentProps } from 'react'; import { ViewProps } from 'react-native'; export type TabListProps = ViewProps & { /** Forward props to child component and removes the extra ``. Useful for custom wrappers. */ asChild?: boolean; }; /** * Wrapper component for `TabTriggers`. `TabTriggers` within the `TabList` define the tabs. * * @example * ```tsx * * * * * * * ``` */ export declare function TabList({ asChild, style, ...props }: TabListProps): import("react").JSX.Element; /** * @hidden */ export declare function isTabList(child: ReactElement): child is ReactElement>; //# sourceMappingURL=TabList.d.ts.map