declare type Props = { value?: string; items?: Array<{ text: string; value: string; }>; onChange: (value: string) => void; }; export declare function Tabs(props: Props): JSX.Element; export {};