/** * Copyright IBM Corp. 2016, 2026 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import PropTypes from 'prop-types'; import React from 'react'; export interface SearchSkeletonProps extends React.HTMLAttributes { /** * Specify an optional className to add. */ className?: string; /** * Specify the size of the SearchSkeleton */ size?: 'xs' | 'sm' | 'md' | 'lg'; /** * Specify whether the Search should be a small variant. * @deprecated Use `size` prop instead. This prop will be removed in the next major release. */ small?: boolean; } declare const SearchSkeleton: { ({ small, size, className, ...rest }: SearchSkeletonProps): import("react/jsx-runtime").JSX.Element; propTypes: { /** * Specify an optional className to add. */ className: PropTypes.Requireable; /** * Specify the size of the SearchSkeleton */ size: PropTypes.Requireable; /** * Specify whether the Search should be a small variant */ small: (props: Record, propName: string, componentName: string, ...rest: any[]) => any; }; }; export default SearchSkeleton; export { SearchSkeleton };