import React from 'react'; export declare type SliderCheckboxProps = { falseColor: string; trueColor: string; falseText: string; trueText: string; isTrue: boolean; setIsTrue: React.Dispatch>; }; export declare const SliderCheckbox: ({ falseColor, trueColor, falseText, trueText, isTrue, setIsTrue, }: SliderCheckboxProps) => import("@emotion/react/jsx-runtime").JSX.Element;