interface UseSafeHeightParams {
    top?: boolean;
    bottom?: boolean;
}
declare const useSafeHeight: ({ top, bottom, }?: UseSafeHeightParams) => number;
export default useSafeHeight;
