import * as React from 'react'; export declare type TabPanelOwnProps = { children: React.ReactNode; /** * An optional unique identifier (within this component) for the TabPanel - must match up with the id of a corresponding . */ id?: string; }; export declare const TabPanel: { (props: TabPanelOwnProps): JSX.Element; getCollectionNode: (props: import("../Collections").ItemProps & { id?: string; value?: string; type?: string; }, context: any) => Generator, any, unknown>; };