export declare class WrappedButtons {
  /**
  * Button wrapper styling
  */
  styleclass: string;
  /**
  * Left/Primary button text
  */
  primarybuttontext: string;
  /**
  * Left/Primary button href - links to page
  */
  primarybuttonhref: string;
  /**
  * Left/Primary button styling class - use bootstrap btn classes to style the button
  */
  primarybuttonclass: string;
  /**
  * Right/Secondary button text
  */
  secondarybuttontext: string;
  /**
  * Right/Secondary button href - links to page
  */
  secondarybuttonhref: string;
  /**
  * Right/Secondary button styling class - use bootstrap btn classes to style the button
  */
  secondarybuttonclass: string;
  render(): any;
}
