import * as React from 'react'; import type { ViewStyle } from 'react-native'; import type { StyleProp } from 'react-native'; export type ScalableProps = React.PropsWithChildren<{ containerStyle?: StyleProp; onDoubleClicked?: () => void; onOneClicked?: () => void; onChangeSized?: (scale: number) => void; }>; export declare function Scalable(props: ScalableProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Scalable.d.ts.map