import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react'; export interface PharosTabProps extends DetailedHTMLProps, HTMLElement> { /** * Indicates if the tab is selected. */ selected?: boolean; /** * Fires when the tab is selected. */ 'onPharos-Tab-Selected'?: (event: CustomEvent) => void; } export declare const PharosTab: FC; //# sourceMappingURL=pharos-tab.d.ts.map