import * as React from "react"; import * as react_jsx_runtime31 from "react/jsx-runtime"; import { VariantProps } from "class-variance-authority"; import * as class_variance_authority_types3 from "class-variance-authority/types"; //#region src/components/marketing/MarketingSection.d.ts declare const sectionVariants: (props?: ({ tone?: "default" | "muted" | "panel" | "gradient" | null | undefined; padding?: "compact" | "comfortable" | "spacious" | null | undefined; } & class_variance_authority_types3.ClassProp) | undefined) => string; type MarketingSectionTone = VariantProps['tone']; type MarketingSectionPadding = VariantProps['padding']; type MarketingSectionProps = React.PropsWithChildren & { eyebrow?: React.ReactNode; title?: React.ReactNode; subtitle?: React.ReactNode; align?: 'left' | 'center'; maxWidth?: 'lg' | 'xl'; className?: string; }>; declare function MarketingSection({ children, eyebrow, title, subtitle, align, maxWidth, tone, padding, className }: MarketingSectionProps): react_jsx_runtime31.JSX.Element; //#endregion export { MarketingSection, MarketingSectionPadding, MarketingSectionTone }; //# sourceMappingURL=MarketingSection.d.ts.map