import {ViewProps} from '@tarojs/components' import {FunctionComponent} from 'react' export interface PanelProps extends ViewProps { style?: React.CSSProperties backgroundColor?: string padding?: boolean children?: React.ReactNode } declare const Panel: FunctionComponent export {Panel}