import type { Component, ExtractPropTypes, PropType } from 'vue'; export declare const cardMediaShapes: readonly ["rounded", "square"]; export type CardMediaShapes = typeof cardMediaShapes[number]; export declare const cardMediaProps: { cs: { readonly type: PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; shape: import("@interface-ui/utils").InPropFinalized<(new (...args: any[]) => "square" | "rounded") | (() => "square" | "rounded") | ((new (...args: any[]) => "square" | "rounded") | (() => "square" | "rounded"))[], "square" | "rounded", unknown, string, boolean>; component: import("@interface-ui/utils").InPropFinalized<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown, string, boolean>; gutter: import("@interface-ui/utils").InPropFinalized; }; export type CardMediaProps = ExtractPropTypes;