import type React from 'react'; type LogoGraphicProps = { size?: string; logo: React.ReactNode; }; export declare const FloatingGraphic: ({ height, marginBottom, marginTop, logoCenter, logoTopRight, logoTopLeft, logoBottomRight, logoBottomLeft, }: { height?: string; marginBottom?: string; marginTop?: string; logoCenter: LogoGraphicProps; logoTopRight?: LogoGraphicProps; logoTopLeft?: LogoGraphicProps; logoBottomRight?: LogoGraphicProps; logoBottomLeft?: LogoGraphicProps; }) => import("react/jsx-runtime").JSX.Element; export {};