/**
 * Properties for {@link ExampleHTML.Render}
 */
export type ExampleHTMLProperties = {
  document?: Document | undefined;
  backgroundColor?: string | undefined;
};
/**
 * Default properties for {@link ExampleHTML.Render}
 */
export const exampleHTMLDefaultProperties: ExampleHTMLProperties = {
  document: undefined,
  backgroundColor: undefined,
};
