import { PressableProps } from "react-native"; type Props = { size: number; checked?: boolean; }; type OwnProps = Props & Pick; /** * An animated checkbox. This can be used to implement a * standard {@link CheckBox} or other composite components. */ export declare const AnimatedCheckbox: ({ size, checked, onPress, disabled }: OwnProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=AnimatedCheckbox.d.ts.map