/**
 * Default configuration for the SecurePin component
 * These values can be overridden by passing props to the component
 */
export interface SecurePinDefaults {
    maxLength: number;
    isError: boolean;
    errorMessage: string;
    placeholder: string;
    isEnableShuffle: boolean;
    showKeyboard: boolean;
    title: string;
    clearLabel: string;
}
export declare const PROPS: SecurePinDefaults;
