import { InputPasswordProps } from './InputPassword';
type ValidationProps = Pick<InputPasswordProps, 'id' | 'label'>;
/**
 * Validates the given properties of the DSInputPassword component for common configuration errors.
 * This function is intended to be used in development mode to provide developers with
 * warnings about potential misuse of the component.
 *
 * @param validationProps - The subset of DSInputPassword properties to validate. This includes
 *                          id and label.
 */
export declare const validateInputPasswordProps: ({ id, label }: ValidationProps) => void;
export {};
