import type { AriaLabelingProps, StyleProps } from '@react-types/shared'; /** * Separate props for Spectrum components into AriaLabelingProps, StyleProps, and * any remaining props. * @param props The props to separate * @returns The separated props */ export declare function separateSpectrumProps(props: T): { ariaLabelProps: AriaLabelingProps; styleProps: StyleProps; componentProps: Omit; }; export default separateSpectrumProps; //# sourceMappingURL=propsUtils.d.ts.map