/** @jsx jsx */ import { JSX, ReactNode } from 'react'; import { jsx } from '@emotion/react'; import { CommonPropsAndClassName, CSSObjectWithLabel, GroupBase } from '../types'; export interface PlaceholderProps = GroupBase> extends CommonPropsAndClassName { /** The children to be rendered. */ children: ReactNode; /** props passed to the wrapping element for the group. */ innerProps: JSX.IntrinsicElements['div']; isDisabled: boolean; isFocused: boolean; } export declare const placeholderCSS: >({ theme: { spacing, colors } }: PlaceholderProps, unstyled: boolean) => CSSObjectWithLabel; declare const Placeholder: >(props: PlaceholderProps) => jsx.JSX.Element; export default Placeholder;