/**
 * @license
 * Copyright Rismun. All Rights Reserved.
 *
 * Use of this source code is governed by a Rismun private license that can be
 * found in the LICENSE file at http://www.rismun.com/licenses/flexaa-license
 */
/// <reference types="react" />
interface ICardProps {
    maxLength?: number;
    style?: {
        rootStyles?: object;
        labelStyles?: object;
        inputStyles?: object;
    };
    className?: string | {
        rootClassName?: string;
        labelClassName?: string;
        inputClassName?: string;
    };
    splitter?: string;
    title?: string;
}
export declare const Card: ({ maxLength, style: styleProps, className, splitter, title }: ICardProps) => JSX.Element;
export {};
//# sourceMappingURL=card.d.ts.map