import type { BaseProps } from '../../BaseProps';
import type { SelectedAriaAttributes, TabsAriaAttribute, TabsBackground, TabsUpdateEventDetail, BreakpointCustomizable, TabsSize, TabsWeight } from '../types';
export type PTabsProps = BaseProps & {
    /**
     * Sets the zero-based index of the currently active tab; update this prop to switch tabs programmatically.
     * @default 0
     */
    activeTabIndex?: number;
    /**
     * Sets ARIA attributes on the tablist, such as `aria-label` and `aria-description`.
     */
    aria?: SelectedAriaAttributes<TabsAriaAttribute>;
    /**
     * Sets the background color of the tabs bar. Use `frosted` only when placed on top of images, videos, or gradients.
     * @default 'none'
     */
    background?: TabsBackground;
    /**
     * Reduces the tab height and padding for use in dense layouts where vertical space is limited.
     */
    compact?: boolean;
    /**
     * Emitted when the user switches to a different tab, carrying the new `activeTabIndex` in the event detail.
     */
    onUpdate?: (event: CustomEvent<TabsUpdateEventDetail>) => void;
    /**
     * Sets the font size of the tab labels using the PDS typographic scale. Supports responsive breakpoint values.
     * @default 'small'
     */
    size?: BreakpointCustomizable<TabsSize>;
    /**
     * @deprecated Will be removed in the next major release. Has no effect anymore.
     * @default 'regular'
     */
    weight?: TabsWeight;
};
export declare const PTabs: import("react").ForwardRefExoticComponent<Omit<import("react").DOMAttributes<{}>, "onChange" | "onInput" | "onToggle"> & Pick<import("react").HTMLAttributes<{}>, "suppressHydrationWarning" | "autoFocus" | "className" | "dir" | "hidden" | "id" | "inert" | "inputMode" | "lang" | "slot" | "style" | "tabIndex" | "title" | "translate" | "role"> & {
    /**
     * Sets the zero-based index of the currently active tab; update this prop to switch tabs programmatically.
     * @default 0
     */
    activeTabIndex?: number;
    /**
     * Sets ARIA attributes on the tablist, such as `aria-label` and `aria-description`.
     */
    aria?: SelectedAriaAttributes<TabsAriaAttribute>;
    /**
     * Sets the background color of the tabs bar. Use `frosted` only when placed on top of images, videos, or gradients.
     * @default 'none'
     */
    background?: TabsBackground;
    /**
     * Reduces the tab height and padding for use in dense layouts where vertical space is limited.
     */
    compact?: boolean;
    /**
     * Emitted when the user switches to a different tab, carrying the new `activeTabIndex` in the event detail.
     */
    onUpdate?: (event: CustomEvent<TabsUpdateEventDetail>) => void;
    /**
     * Sets the font size of the tab labels using the PDS typographic scale. Supports responsive breakpoint values.
     * @default 'small'
     */
    size?: BreakpointCustomizable<TabsSize>;
    /**
     * @deprecated Will be removed in the next major release. Has no effect anymore.
     * @default 'regular'
     */
    weight?: TabsWeight;
} & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLElement>>;
