You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
849 B
15 lines
849 B
/// <reference types="react" />
|
|
import { TabProps } from '@rneui/base/dist/Tab/Tab';
|
|
import { TabItemProps } from '@rneui/base/dist/Tab/Tab.Item';
|
|
export type { TabProps, TabItemProps };
|
|
export declare const ThemedTab: (import("react").FunctionComponent<import("react").PropsWithChildren<TabProps & {
|
|
theme?: import("@rneui/base").Theme;
|
|
children?: import("react").ReactNode;
|
|
}>> | import("react").ForwardRefExoticComponent<import("react").RefAttributes<import("react").PropsWithChildren<TabProps & {
|
|
theme?: import("@rneui/base").Theme;
|
|
children?: import("react").ReactNode;
|
|
}>>>) & {
|
|
Item: import("react").FunctionComponent<import("react").PropsWithChildren<TabItemProps>> | import("react").ForwardRefExoticComponent<import("react").RefAttributes<import("react").PropsWithChildren<TabItemProps>>>;
|
|
};
|
|
export default ThemedTab;
|