import { BoxProps, ElementProps, MantineColor, MantineRadius, MantineSize } from '../../../core';
export interface SliderRootProps extends BoxProps, ElementProps<'div'> {
    size: MantineSize | (string & {}) | number;
    children: React.ReactNode;
    color?: MantineColor;
    disabled: boolean | undefined;
    variant?: string;
    thumbSize?: string | number;
    radius?: MantineRadius;
    orientation?: 'horizontal' | 'vertical';
}
export declare function SliderRoot({ size, disabled, variant, color, thumbSize, radius, orientation, ...others }: SliderRootProps): import("react/jsx-runtime").JSX.Element;
export declare namespace SliderRoot {
    var displayName: string;
}
