import { Blankslate, BlankslateDescriptionProps, BlankslateHeadingProps, BlankslatePrimaryActionProps, BlankslateProps, BlankslateSecondaryActionProps, BlankslateVisualProps, Description, Heading, PrimaryAction, SecondaryAction, Visual } from "./Blankslate.js";

//#region src/Blankslate/index.d.ts
declare const BlankslateContainer: typeof Blankslate & {
  Visual: typeof Visual;
  Heading: typeof Heading;
  Description: typeof Description;
  PrimaryAction: typeof PrimaryAction;
  SecondaryAction: typeof SecondaryAction;
};
//#endregion
export { BlankslateContainer as Blankslate, type BlankslateProps };