///
import { motion } from 'framer-motion';
import { type ElementProps } from '../../../../types/element/elementProps';
type FixedOverlayCommonProps = {
show?: boolean;
};
export type FixedOverlayOwnProps = FixedOverlayCommonProps & ({
sticky: true;
stickyProps?: ElementProps;
} | {
sticky?: false;
stickyProps?: never;
});
export type DivProps = React.PropsWithChildren>;
export declare function FixedOverlay({ children, show, sticky, stickyProps, ...divProps }: DivProps): import("react/jsx-runtime").JSX.Element;
export declare namespace FixedOverlay {
var displayName: string;
}
export {};
//# sourceMappingURL=FixedOverlay.d.ts.map