import React from 'react'; import { View } from 'react-native'; import { type BoxProps } from '../layout/Box'; export type StickyFooterProps = BoxProps & { /** * Compact variant of StickyFooter */ compact?: boolean; /** * Whether to apply a box shadow to the StickyFooter element. * @deprecated Use `elevation` instead. This will be removed in a future major release. * @deprecationExpectedRemoval v8 */ elevated?: boolean; }; export declare const StickyFooter: React.MemoExoticComponent< ({ ref: forwardedRef, elevated, elevation, children, testID, role, accessibilityLabel, compact, paddingX, paddingTop, flexShrink, ...props }: StickyFooterProps & { ref?: React.Ref; }) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=StickyFooter.d.ts.map