import { FieldConstraintProcedureOptions } from "../../../models/interfaces/field-constraint-procedure-options"; import { FieldConstraintFn } from "../../../models/interfaces/field-constraint-fn"; export declare const STARTS_WITH = "startsWith"; export declare const startsWith: FieldConstraintFn<{ value: Array | string | any; }>; export declare const startsWithMessageBuilder: ({ fieldName }: { fieldName: any; }) => string; export declare function StartsWith(value: Array | string | any, options?: FieldConstraintProcedureOptions): PropertyDecorator;