import React from "react"; import { PbEditorPageElementSettingsRenderComponentProps } from "../../../../types"; type AnimationSettingsPropsType = { title?: string; styleAttribute?: string; }; type AnimationSettingsProps = AnimationSettingsPropsType & PbEditorPageElementSettingsRenderComponentProps; declare const AnimationSettings: (props: AnimationSettingsProps) => React.JSX.Element; export default AnimationSettings;