import { type FunctionalComponent } from '../../../stencil-public-runtime'; export declare const messageId = "message"; type ValidationProps = { visible?: boolean; message?: string; /** Is the component displayed on a dark background. */ dark?: boolean; /** If true, the validation message will have no margin. */ noMargin?: boolean; }; /** * Accessible validation component that can be used to display a error text for form fields. * Remember to add `@import 'path/to/validation.scss';` to the component's SCSS file so the styles are applied. */ export declare const Validation: FunctionalComponent; export {};