You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
496 B
19 lines
496 B
import React from 'react';
|
|
import { SearchBarIOS } from './SearchBar-ios';
|
|
import { Theme } from '../helpers';
|
|
import { SearchBarProps } from './types';
|
|
export type { SearchBarProps };
|
|
export declare class SearchBar extends React.Component<SearchBarProps & {
|
|
theme?: Theme;
|
|
}> {
|
|
searchBar: SearchBarIOS;
|
|
static defaultProps: {
|
|
platform: "default";
|
|
};
|
|
focus: () => void;
|
|
blur: () => void;
|
|
clear: () => void;
|
|
cancel: () => void;
|
|
render(): JSX.Element;
|
|
}
|