import * as React from 'react'; import * as P from '../../PresentationTypes'; interface PlaylistInputProps { label: string; value: string; propertyTypeIndex: number; playlists: P.Playlist[]; helperText: React.ReactNode; error?: boolean; onChange: (value: string) => any; onBlur: React.FocusEventHandler; } declare class PlaylistInput extends React.Component { onChangeTimeout: number; componentDidMount(): void; componentDidUpdate(prevProps: PlaylistInputProps): void; checkDefaultValue(): void; componentWillUnmount(): void; render(): JSX.Element; } export default PlaylistInput;