import { ComponentInterface } from '../stencil-public-runtime';
/**
 * Provide default error messages for ValidityState
 */
export declare const validityMessages: (el: ComponentInterface) => {
  badInput: string;
  patternMismatch: string;
  rangeOverflow: string;
  rangeUnderflow: string;
  stepMismatch: string;
  tooLong: string;
  tooShort: string;
  typeMismatch: string;
  valueMissing: string;
};
