import { CheckboxStyleProps } from './types'; import { PlatformBlocksTheme } from '../../core/theme/types'; export declare const useCheckboxStyles: (props: CheckboxStyleProps & { theme: PlatformBlocksTheme; }) => { checkbox: { transition?: string | undefined; alignItems: "center"; backgroundColor: string; borderColor: string; borderRadius: number; borderWidth: number; height: number; justifyContent: "center"; opacity: number; width: number; }; checkboxContainer: { alignItems: "center"; justifyContent: "center"; minWidth: number; minHeight: number; padding: number; }; checkboxInner: { alignItems: "center"; height: "100%"; justifyContent: "center"; width: "100%"; }; container: { alignItems: "center"; flexDirection: "row"; minHeight: number; }; containerReverse: { flexDirection: "row-reverse"; justifyContent: "flex-end"; }; description: { color: string; marginTop: number; }; error: { color: string; marginTop: number; }; label: { userSelect?: any; color: string; lineHeight: number; }; labelContainer: { flex: number; justifyContent: "center"; marginLeft: number; marginRight: number; paddingHorizontal: number; paddingVertical: number; }; labelDisabled: { color: string; }; labelError: { color: string; }; required: { color: string; }; spacingProps: {}; };