import type { ESLTriggerTagShape } from '../../esl-trigger/core/esl-trigger.shape';
import type { ESLTab } from './esl-tab';
/**
 * Tag declaration interface of {@link ESLTab} element
 * Used for TSX declaration
 */
export interface ESLTabTagShape extends ESLTriggerTagShape<ESLTab> {
}
declare global {
    namespace JSX {
        interface IntrinsicElements {
            /** {@link ESLTab} custom tag */
            'esl-tab': ESLTabTagShape;
        }
    }
}
