/** * Default UI phrases used throughout the gallery. * * These strings serve as fallback values when no custom `phrases` prop is provided. * Override any of them by passing a `phrases` prop to the gallery component. */ export declare const defaultPhrases: { /** Displayed when the gallery receives no photos. */ noPhotosProvided: string; /** Label for the button that opens the photo list panel. */ showPhotoList: string; /** Label for the button that closes the photo list panel. */ hidePhotoList: string; }; export type DefaultPhrases = typeof defaultPhrases; /** * @deprecated Use named import instead: `import { defaultPhrases } from './default-phrases'`. * Default export will be removed in the next major version. */ export default defaultPhrases;