import type { SegmentSelectorProps } from '../SegmentSelector.types.js'; /** * Gets the display value props for showing the text or loading state, as well as aria props. * @internal */ export declare function useTriggerProps(variant: SegmentSelectorProps['variant'], remainingProps: SegmentSelectorProps): { isLoading: boolean; text: string | null; ariaProps: { 'aria-labelledby'?: string; 'aria-describedby'?: string; 'aria-details'?: string; 'aria-label': string | undefined; 'aria-disabled': ("false" | "true" | boolean) | undefined; }; }; //# sourceMappingURL=useTriggerProps.d.ts.map