export declare const Toggle: { baseStyle?: { label: { textStyle: string; color: string; }; description: { textStyle: string; color: string; }; overallContainer: { display: string; justifyContent: string; }; } | undefined; sizes?: { md: { label: { mr: string; mb: number; }; }; } | undefined; variants?: { [key: string]: import("@chakra-ui/styled-system").PartsStyleInterpolation<{ keys: ("label" | "description" | "overallContainer")[]; }>; } | undefined; defaultProps?: { size?: "md" | undefined; variant?: string | number | undefined; colorScheme?: string | undefined; } | undefined; parts: ("label" | "description" | "overallContainer")[]; };