import { by, element } from 'detox';
declare class App {
    scrollView: ReturnType<typeof element>;
    scrollDownTo: (calendar: ReturnType<typeof by>) => void;
    scrollUpTo: (calendar: ReturnType<typeof by>) => void;
    constructor();
}
export default App;
