import * as React from 'react'; import { ChildProps } from '../types'; declare type Props = ChildProps & React.HTMLAttributes & { onSizeChanged?: (currentSize: number) => void; }; export declare type SectionProps = Pick; export declare const Section: (props: Pick) => JSX.Element; export {};