import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react';
export interface PharosTabsProps extends DetailedHTMLProps, HTMLElement> {
/**
* If should display a panel separator.
*/
panelSeparator?: boolean;
/**
* The 0-based index of the tab that is initially selected.
*/
selectedTab?: number;
/**
* Removes the extra padding and margin from the tab list
*/
compact?: boolean;
/**
* Fires when the tab is selected.
*/
'onPharos-Tabs-Tab-Selected'?: (event: CustomEvent) => void;
}
export declare const PharosTabs: FC;
//# sourceMappingURL=pharos-tabs.d.ts.map