import React from "react"; export declare const TextFieldFilledActive: (prefix: string) => { paddingBottom: string; "&:focus + label, label:active": { color: string; transform: string; }; "&:focus + label + .text-field-line-ripple": { backgroundColor: string; "&::after": { left: string; width: string; opacity: number; backgroundColor: string; }; }; }; declare type Props = { label: string; prefix: string; }; declare const TextFieldFilled: React.FC; export default TextFieldFilled;