import * as React from "react";
import { type VariantProps } from "class-variance-authority";
declare const widgetTitlePlaceholderVariants: (props?: ({
    size?: "auto" | "standard" | null | undefined;
    padding?: "base" | "none" | null | undefined;
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
export interface WidgetTitlePlaceholderProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof widgetTitlePlaceholderVariants> {
    placeholder?: React.ReactNode;
    layout?: "leftTop" | "rightTop" | "leftBottom" | "rightBottom" | "leftTop,rightTop" | "leftTop,leftBottom" | "leftTop,rightBottom" | "rightTop,leftBottom" | "rightTop,rightBottom" | "leftBottom,rightBottom" | "leftTop,rightTop,leftBottom" | "leftTop,rightTop,rightBottom" | "leftTop,leftBottom,rightBottom" | "rightTop,leftBottom,rightBottom" | "all";
    size?: "standard" | "auto";
    padding?: "none" | "base";
}
declare const WidgetTitlePlaceholder: React.ForwardRefExoticComponent<WidgetTitlePlaceholderProps & React.RefAttributes<HTMLDivElement>>;
export { WidgetTitlePlaceholder, widgetTitlePlaceholderVariants };
