import React from 'react'; import type { ViewProps } from '@tarojs/components'; import type { BackgroundProps, BoxShadowProps, HeightProps } from '@lx-react-materiel/shared'; import { type Required as IRequired } from 'utility-types'; import './index.less'; interface ILxFooterSlotProps { slotLeft?: React.ReactNode; slotRight?: React.ReactNode; children?: React.ReactNode; } type ILxFooterProps = CurSlotProps & Pick & BackgroundProps & BoxShadowProps & HeightProps; export type ILxFooterDefaultProps = IRequired>, 'children'>; export type ILxFooterSlotLeftRightProps = IRequired>, 'slotLeft' | 'slotRight'>; /** * 底部组件 * @param props * @constructor */ export declare const LxFooter:

= ILxFooterDefaultProps>(props: P) => JSX.Element; export default LxFooter;