import { Custom } from "../types";
interface BannerProps {
    layout?: string;
    custom?: Custom;
}
export default function setBannerData({ layout, custom }: BannerProps): void;
export {};
