export interface TabListProps extends React.ComponentProps<"div"> { /** `Tabs.Tab` components */ children: React.ReactNode; /** Determines whether tabs should take all available space, `false` by default */ grow?: boolean; /** Tabs alignment * @default 'start' */ justify?: "start" | "center" | "end"; } export declare function TabList(props: TabListProps): import("react").JSX.Element;