import { SxProp } from '../../system';
import { AsProp, ChildrenProp, HTMLAttributes } from '../../types';
export interface TabProps extends HTMLAttributes, AsProp, ChildrenProp, SxProp {
    isDisabled?: boolean;
    isSelected?: boolean;
}
export declare const Tab: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, TabProps, never>;
