1 | import type { Assign } from "@ark-ui/react";
|
2 | import { SegmentGroup as ArkSegmentGroup } from "@ark-ui/react/segment-group";
|
3 | import { type HTMLChakraProps, type SlotRecipeProps, type UnstyledProp } from "../../styled-system";
|
4 | declare const useSegmentGroupStyles: () => Record<string, import("../..").SystemStyleObject>;
|
5 | export { useSegmentGroupStyles };
|
6 | export interface SegmentGroupRootProviderBaseProps extends Assign<ArkSegmentGroup.RootProviderBaseProps, SlotRecipeProps<"segmentGroup">>, UnstyledProp {
|
7 | }
|
8 | export interface SegmentGroupRootProviderProps extends HTMLChakraProps<"div", SegmentGroupRootProviderBaseProps> {
|
9 | }
|
10 | export declare const SegmentGroupRootProvider: import("react").ForwardRefExoticComponent<SegmentGroupRootProviderProps & import("react").RefAttributes<HTMLDivElement>>;
|
11 | export interface SegmentGroupRootBaseProps extends Assign<ArkSegmentGroup.RootBaseProps, SlotRecipeProps<"segmentGroup">>, UnstyledProp {
|
12 | }
|
13 | export interface SegmentGroupRootProps extends HTMLChakraProps<"div", SegmentGroupRootBaseProps> {
|
14 | }
|
15 | export declare const SegmentGroupRoot: import("react").ForwardRefExoticComponent<SegmentGroupRootProps & import("react").RefAttributes<HTMLDivElement>>;
|
16 | export declare const SegmentGroupPropsProvider: React.Provider<SegmentGroupRootBaseProps>;
|
17 | export interface SegmentGroupItemProps extends HTMLChakraProps<"label", ArkSegmentGroup.ItemBaseProps> {
|
18 | }
|
19 | export declare const SegmentGroupItem: import("react").ForwardRefExoticComponent<SegmentGroupItemProps & import("react").RefAttributes<HTMLLabelElement>>;
|
20 | export interface SegmentGroupItemTextProps extends HTMLChakraProps<"span", ArkSegmentGroup.ItemTextBaseProps> {
|
21 | }
|
22 | export declare const SegmentGroupItemText: import("react").ForwardRefExoticComponent<SegmentGroupItemTextProps & import("react").RefAttributes<HTMLSpanElement>>;
|
23 | export interface SegmentGroupIndicatorProps extends HTMLChakraProps<"div", ArkSegmentGroup.IndicatorBaseProps> {
|
24 | }
|
25 | export declare const SegmentGroupIndicator: import("react").ForwardRefExoticComponent<SegmentGroupIndicatorProps & import("react").RefAttributes<HTMLSpanElement>>;
|
26 | export declare const SegmentGroupItemHiddenInput: import("react").ForwardRefExoticComponent<ArkSegmentGroup.ItemHiddenInputProps & import("react").RefAttributes<HTMLInputElement>>;
|
27 | export declare const SegmentGroupContext: (props: ArkSegmentGroup.ContextProps) => import("react").ReactNode;
|
28 | export declare const SegmentGroupItemContext: (props: ArkSegmentGroup.ItemContextProps) => import("react").ReactNode;
|
29 | export interface SegmentGroupValueChangeDetails extends ArkSegmentGroup.ValueChangeDetails {
|
30 | }
|