import type { LayoutChangeEvent } from 'react-native';
export declare const useLayout: () => {
    onLayout: (e: LayoutChangeEvent) => void;
    layout: {
        width: number;
        height: number;
    };
};
