@harvest-profit/npk
Version:
NPK UI Design System
13 lines • 573 B
TypeScript
import SegmentedControlComponent from './SegmentedControl';
import Button from './Button/Button';
import IconButton from './IconButton/IconButton';
type SegmentedControl = typeof SegmentedControlComponent & {
Button: typeof Button;
IconButton: typeof IconButton;
};
declare const SegmentedControl: SegmentedControl;
export default SegmentedControl;
export type { ButtonProps } from './Button/Button';
export type { IconButtonProps } from './IconButton/IconButton';
export type { SegmentedControlProps } from './SegmentedControl';
//# sourceMappingURL=index.d.ts.map