import React from 'react'; import { SliderProps } from './Slider'; import { StackProps } from './View/Stack'; declare type SliderPaneProps = StackProps & Partial & { index?: number; width?: number; onChangeHeight?: Function; currentHeight?: number; isActive?: boolean; curFrame?: number; onMountChange?: (isMounted: boolean) => any; }; export declare const SliderPane: React.MemoExoticComponent<({ children, onChangeHeight, width, fixHeightToTallest, currentHeight, verticalPad, framePad, isActive, onMountChange, ...props }: SliderPaneProps) => JSX.Element>; export {}; //# sourceMappingURL=SliderPane.d.ts.map