import { FunctionComponent, ReactNode } from 'react';
import { Size } from './types.js';

interface PinchIndicatorProps {
    instructionText: ReactNode;
    size: Size;
    show?: boolean;
}
declare const PinchIndicator: FunctionComponent<PinchIndicatorProps>;

export { PinchIndicator as default };
export type { PinchIndicatorProps };
