import * as React from 'react';
import { BaseProps } from './types';
export interface WiredTabProps extends BaseProps {
    /**
     * Unique identifier for that tab. Used for selection.
     */
    name?: string;
    /**
     * Text to show in the tab. Defaults to the name property.
     */
    label?: string;
    /**
     * The children.
     */
    children?: React.ReactNode;
}
export declare const WiredTab: ({ children, name, label, className, style, }: WiredTabProps) => JSX.Element;
