/** @jsx jsx */ /// export interface IRoundedNavProps { selected: string; options: string[]; onSelect: (selectedValue: string) => void; } export declare function RoundedNav(props: IRoundedNavProps): JSX.Element;