import * as React from 'react';
export interface CustomProps {
  className?: string;
  style?: React.CSSProperties;
  property1?: "base";
  /** Text content; defaults to "Book a call". */
  text1?: string;
}
export declare const Custom: React.FC<CustomProps>;
export default Custom;
