UNPKG

@spaced-out/ui-design-system

Version:
13 lines 703 B
import * as React from 'react'; import type { AnchorType } from '../../components/ButtonDropdown'; import type { ButtonTabProps } from '../../components/ButtonTabs/ButtonTab'; import type { ElevationType } from '../../components/Tooltip'; export interface ButtonTabDropdownProps extends Omit<ButtonTabProps, 'title' | 'elevation' | 'dropdownClass' | 'anchorPosition'> { title: string; elevation?: ElevationType; dropdownClass?: string; anchorPosition?: AnchorType; testId?: string; } export declare const ButtonTabDropdown: ({ title, elevation, anchorPosition, testId, ...buttonTabProps }: ButtonTabDropdownProps) => React.JSX.Element; //# sourceMappingURL=ButtonTabDropdown.d.ts.map