import { SCUserType } from '@selfcommunity/types';
export interface AccountCredentialProps {
    /**
     * The user obj
     */
    user?: SCUserType;
    /**
     * Overrides or extends the styles applied to the component.
     * @default null
     */
    className?: string;
    /**
     * Skip email validation when change email
     * If skipEmailValidation=false it is required email validation (an email will be sent to the user)
     * @default false
     */
    skipEmailValidation?: boolean;
    /**
     * Any other properties
     */
    [p: string]: any;
}
export default function AccountCredentials(props: AccountCredentialProps): JSX.Element;
